Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Old 03-13-2003, 07:01 AM   PM User | #1
desi
New to the CF scene

 
Join Date: Mar 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
desi is an unknown quantity at this point
Question url redirect based on time & day of week

Our site offers streaming audio on Thursday evening (7:30 to 8:30) and on Sunday morning (8:30 to 1:30p). How can I use PHP to direct the visitor to the audio streaming link only during these times. At all other times, I want a message that indicates when the streaming is available.

Thanks in advance for your suggestions!

Desi
desi is offline   Reply With Quote
Old 03-13-2003, 08:29 PM   PM User | #2
Evlich
New Coder

 
Join Date: Jun 2002
Posts: 72
Thanks: 0
Thanked 0 Times in 0 Posts
Evlich is an unknown quantity at this point
You might try something like this:
Code:
<?php 
 $day = date("D");   //returns "Mon" "Tue"
 $time = date("Hi"); //returns HoursMinutes
 if( ($day == "Thu" && $time >= "1930" && $time < "2030") ||
     ($day == "Sun" && $time >= "0830" && $time < "1330") )
 {
  header("Location: REDIRECT URL");
  exit;
 }
?>
That should work, I am not absolutely positive about whether $day will be "Thu" or "Thr" on Thursday, but that should be correct. Hope that this helps.
~evlich
Evlich is offline   Reply With Quote
Old 03-13-2003, 09:28 PM   PM User | #3
desi
New to the CF scene

 
Join Date: Mar 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
desi is an unknown quantity at this point
thanks for your help!

Desi
desi is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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 On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:01 PM.

Home - Contact Us - Archives - Link to CF - Resources - Top 

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.