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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.