Jump to content

changing webpage


johanwagner

Recommended Posts

look
use the date function
[CODE]
<?php
$day = date('l');
switch($day){
case "Monday";
include("site1.php");
break;
case "Tuesday";
include("site1.php");
break;
case "Wednesday";
include("site1.php");
break;
case "Thursday";
include("site1.php");
break;
case "Friday";
include("site1.php");
break;
case "Saturday";
include("site2.php");
break;
case "Sunday";
include("site2.php");
break;
}
?>
[/CODE]
Link to comment
https://forums.phpfreaks.com/topic/30615-changing-webpage/#findComment-141019
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.