Here is a quick code.......
<html>
<body>
<?php
$d=date("D");
if ($d=="Fri")
echo "Have a nice weekend!";
else
echo "Have a nice day!";
?>
</body>
</html>
What this is basically saying is that if the date ($d) equals (==) Friday (Fri) then the echo would be Have a nice weekend!, BUT if the date equals any other day then the echo would be Have a nice day!
