I've had a couple of people email me about how to do this, so I will just post it here. It's pretty simple actually, all you have to do is deciede what you want the page to look like before the time deadline and what you want to look like after and put some if statements in

Hope it helps.
Tim
PHP Code:
<?
// Get the current file name of the page that was called
$file_name = $_SERVER['SCRIPT_FILENAME'];
// Get info about the page that was called
$file_info = stat("$file_name");
// Get the date the file was last changed
$file_date = $file_info[mtime];
// Today's day to offset with
$todays_date = date(U);
// Set the amount of time diff to switch page format (time is in seconds, so 90 days = 7776000)
$offset_seconds = 7776000;
if(($todays_date - $file_date) > $offset_seconds){
$site_upsell = "YES";
}else{
$site_upsell = "NO";
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Nasty Teen Sluts</title>
</head>
<body>
<? // use the $site_upsell variable to plugin new text links or to change them up after 90 days ?>
<? if($site_upsell == "YES"):?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages">Check out the website for more free pic's !!!</a>
</div>
<? endif; ?>
<table align="center" cellspacing="2" cellpadding="2" border="0">
<tr>
<td>
<? if($site_upsell == "NO"):?>
<? // Just show link the pic straight from the thumbnail ?>
<a href="pic01.jpg"><img src="thumb_pic01.jpg" border="0" alt="Click Here For Hot Teens"></a>
<? else: ?>
<? // Use this to wrap the picture with some html so you can put another banner
// or some more text links to the sponsors site ?>
<a href="show_picture.html?pic=pic01.jpg"><img src="thumb_pic01.jpg" border="0" alt="Click Here For Hot Teens"></a>
<? endif; ?>
</td>
<td>
<? if($site_upsell == "NO"):?>
<? // Just show link the pic straight from the thumbnail ?>
<a href="pic02.jpg"><img src="thumb_pic02.jpg" border="0" alt="Click Here For Hot Teens"></a>
<? else: ?>
<? // Use this to wrap the picture with some html so you can put another banner
// or some more text links to the sponsors site ?>
<a href="show_picture.html?pic=pic02.jpg"><img src="thumb_pic02.jpg" border="0" alt="Click Here For Hot Teens"></a>
<? endif; ?>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
<? // use the $site_upsell variable to upsize the text after 90 days ?>
<? if($site_upsell == "YES"):?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages"><font size="+2">Get more free pics of this hot teen here</font></a>
</div>
<? else: ?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages">Get more free pics of this hot teen here</a>
</div>
<? endif; ?>
</body>
</html>