| Ultrashock Forums
• Expire Date Script for HTML documents |
|||
![]() |
||||
| Search this Thread | Thread Tools | Display Modes |
|
|
|||||||||||||||||||||||||
![]() |
Ultrashock Member Comments:
|
2007-02-06
#2 |
||
|
|
|
2007-02-06
#3 |
||
|
Smart! Thanks for that |
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|


2 comments
| 353 views


Linear Mode
<?php$today = date();
$expired = date(); // expires today.. use a timestamp to set for other dates;
if($today<$expired){
include("htmlpage.html");
}else{
include("holdingpage.html");
}
?>