Is it possible to compare two Array values ?
Say:
Array 1> Array 2>
Values: Values:
2 11
36 13
65 11
78 1
Code sample:
If (Array1 >= Array2){
echo"Not Available";
}
else
{
echo"Available";
}
Expected Result:
Array ("Not Available",
"Available",
"Available",
"Available")
comparinghere?