Jump to content

Day & Night


funkfact

Recommended Posts

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

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

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.