I want to create a php statement which changes a sentence depending on the time of the day.
E.g. At the moment I have this:
<?php
$d=date("D");
if ($d=="Sat") echo "It is Saturday";
elseif ($d=="Sun")
echo "It is Sunday";
else
echo "It is a weekday";
?>
How could I edit this, so that it...