Well, the complications of this are that your time is different, server time, your local time, my local time, GMT/UTC etc. all different. SO if you have a page expire on Thursday of next week, some will have it expire 47 hours before/after others.
If this isn't a concern, then converting the date to expire into a day, month and year and giving a header Location can be done in PHP:
PHP Code:
<?php
if (date("m") >= 11 && date("d") >= 17 && date("Y") >=2007) header('Location: http://www.example.com/newpage.html');
?>
or... something like that..
Bookmarks