funkfact Posted December 3, 2010 Share Posted December 3, 2010 Hi Everyone, In redesigning my new web site, with the skills I am learning in PHP I struck upon a thought which I would like to ask: Is it possible to switch my heading banner from a daytime scene to a night time scene using the time of the local server. Basically I have two links in my database to two separate SWF files. Is there a script available anywhere that would do this? Thanks! Link to comment https://forums.phpfreaks.com/topic/220565-day-night/ Share on other sites More sharing options...
Mchl Posted December 3, 2010 Share Posted December 3, 2010 Use date function to get current hour. Then you can use different banner when hout is between 6PM and 6AM (night) and different when it's between 6AM and 6PM <?php $h = date('H'); if($h >= 6 && $h < 18) { echo 'display daytime banner'; } else { echo 'display nighttime banner'; } Link to comment https://forums.phpfreaks.com/topic/220565-day-night/#findComment-1142604 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.