Current location: Hot Scripts Forums » General Community » Script Requests » time of day image changer


time of day image changer

Reply
  #1 (permalink)  
Old 08-14-03, 01:49 AM
onairLA onairLA is offline
New Member
 
Join Date: Aug 2003
Location: Sin City
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Red face time of day image changer

I'm looking for a script that will display and change images depending on TIME OF DAY at server location.
Reply With Quote
  #2 (permalink)  
Old 08-15-03, 07:07 PM
onairLA onairLA is offline
New Member
 
Join Date: Aug 2003
Location: Sin City
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
I'll pay if it works.
Reply With Quote
  #3 (permalink)  
Old 08-15-03, 08:11 PM
YourPHPPro's Avatar
YourPHPPro YourPHPPro is offline
Community VIP
 
Join Date: Aug 2003
Posts: 430
Thanks: 0
Thanked 0 Times in 0 Posts
Would something like this work ?

Quote:
<script language="php">

switch (date("G")) {
case "01":
// show this image between 01:00:00 and 01:59:59
$image="01-00-00.jpg";
break;
case "02":
// show this image between 02:00:00 and 02:59:59
$image="02-00-00.jpg";
break;
}

if ($fd = @fopen($image, "rb")) {
$image_out = fread($fd, filesize($image));
fclose($fd);
header("Content-type: $image_type");
// display the image
echo $image_out;
} else {
header("Content-type: image/gif");
// display the default image if no hourly image exists
readfile($default_image);
}

</script>
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
time Alii Script Requests 2 03-20-04 11:31 AM
dynamic image src = Newbie question clintre PHP 1 10-07-03 09:56 AM
camera phone image poster apt2 Script Requests 2 08-29-03 07:20 PM
A different kind of image counter Stix Script Requests 1 08-11-03 11:50 PM
Skript to convert email to image spade PHP 1 06-11-03 09:28 AM


All times are GMT -5. The time now is 10:57 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.