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! Quote Link to comment 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'; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.