Ryan's District Boards

Computer, programming, and webmaster help , support , tips and tricks => Internet webmaster computer programming technology tips and tricks => Code Banks => Topic started by: staff on July 25, 2006, 05:36:26 PM

Title: RD Week(end) message 1.3
Post by: staff on July 25, 2006, 05:36:26 PM
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>