Forum Moderators: coopster

Message Too Old, No Replies

php redirect based on date

         

stadiumtigrium

6:54 pm on Oct 22, 2009 (gmt 0)

10+ Year Member



Hi,

I'm trying to figure out a how to automatically redirect to a different web page after a certain date using php. Any ideas?

TheMadScientist

7:02 pm on Oct 22, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Something like:

$redirect_time=mktime(0, 0, 0, 12, 1, 2009);
[php.net...]

$time=time();
[php.net...]

if($time>=$redirect_time) {
header("Location: http://www.example.com/");
}

Should get you close.