Forum Moderators: coopster
I'm trying to figure out a how to automatically redirect to a different web page after a certain date using php. Any ideas?
$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.