Hello all....
I have the following script
$now = date("H i s");
if ($now > ("06 00 00")& $now < ("10 00 00"))
{
$display = "hello";
}
Pretty simple.....basically if the time is between 6 and 10 than $display becomes "hello".
My question is.....what if I want this to be different on Sat and Sundays? What/How should I change the script?