johanwagner Posted December 14, 2006 Share Posted December 14, 2006 HiAlmost totaly novice in PHP, working with existing site using PHP ( www.escapekajakcenter.nu )I want to make some pages change a certain date. Like "we are open on friday" should be shanged to something else after friday...any tip?regards/Johan Link to comment https://forums.phpfreaks.com/topic/30615-changing-webpage/ Share on other sites More sharing options...
.josh Posted December 14, 2006 Share Posted December 14, 2006 is this a 1 time thing, or are you looking to be able to be able to in the future change it to something else? Link to comment https://forums.phpfreaks.com/topic/30615-changing-webpage/#findComment-140976 Share on other sites More sharing options...
chriscloyd Posted December 14, 2006 Share Posted December 14, 2006 lookuse 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 More sharing options...
johanwagner Posted December 17, 2006 Author Share Posted December 17, 2006 Thanks a lot, I´ll try the switch function.Getting on a bit now.Thanks again./Johan Link to comment https://forums.phpfreaks.com/topic/30615-changing-webpage/#findComment-143065 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.