Hello people, good evening!
I have this code in php working its function is to inform if the current time is in the range of 8 to 12
Well, the problem is working and I need it to report only from second to sixth example: if it is Saturday, or Sunday, I do not want to display anything, neither the if nor the else would be possible?
$hora = date('H');
if($hora >= "08" AND $hora < "12"){
echo "OK";
}else{
echo "Não ok..";
}