Hi Folks,
I can't understand what is going on with this simple code:
$app_time = "9:00 AM";
if($app_time == ("10:00 AM" or "11:00 AM")) {
echo "Date OK";
} else {
echo "Our Hours are from 10:00AM to 11:00AM";
}
All I get is "Date OK", it doesn't matter if the $app_date is not in the hour range (10:00 AM or 11:00 AM)...
Anyone?