Message depending on the day of the week
Basicly is made to show visitors a message on friday introducing the weekend and in the days of the week end telling them to enjoy there day
You may add more ifs as much as u need
<html>
<body>
<?php
/*Please leave this credit or make a link for http://ryansdistrict.com on the page which you want to display the code
This code is created by Ryan website : http://ryansdistrict.com */
$x = date("D");
if($x =="Fri") echo " Have a nice week end";
if($x =="Sat") echo " Enjoy your weekend";
if($x =="Sun") echo " Enjoy your weekend";
else echo "Today is ".$x." We hope you have great week";
?>
</body>
</html>