<?php
$da = getdate();
$date="$da[weekday] $da[mday] $da[month] $da[year]";
$news = ("<table border="0" width="94%" id="table10" cellspacing="0" cellpadding="0"
height="136">
<tr>
<td valign="top" height="15" width="10">
<img border="0" src="images/navs/tlc.gif" width="10" height="15">
</td>
<td valign="top" height="15" background="images/navs/tm.gif">
</td><td valign="top" height="15" width="10">
<img border="0" src="images/navs/trc.gif" width="10" height="15">
</td>
</tr><tr>
<td valign="top" width="10" background="images/navs/tlt.gif">
</td>
<td valign="top">
<table border="3" width="100%" id="table11" cellspacing="0" cellpadding="0"
height="100%" bordercolordark="#222931" bordercolorlight="#413F52">
<tr>
<td height="26" background="images/navs/toptblbg.gif">
<div align="center">
<table border="0" width="98%" id="table14" cellspacing="0" cellpadding="0">
<tr>
<td width="189">
<b>
<font face="Arial" size="2">$title</font></b></td>
<td align="right">
<b>
<font face="Arial" size="2">$date</font></b></td>
</tr>
</table></div>
</td>
</tr><tr>
<td valign="top">$news</td></tr>
<tr>
<td height="24" background="images/navs/toptblbg.gif">
<div align="center">
<table border="0" width="98%" id="table15" cellspacing="0" cellpadding="0">
<tr>
<td><b>
<font face="Arial" size="2">Posted by $posted</font></b></td>
</tr>
</table>
</div>
</td></tr>
</table>
</td>
<td valign="top" width="10" background="images/navs/trt.gif"></td>
</tr>
<tr>
<td valign="top" height="12" width="10">
<img border="0" src="images/navs/blc.gif" width="10" height="12"></td>
<td valign="top" height="12" background="images/navs/btm.gif"></td>
<td valign="top" height="12" width="10">
<img border="0" src="images/navs/brc.gif" width="10" height="12"></td>
</tr>
</table>
<br>");
$file = fopen("news.php", "r");
$read = fread($file, filesize("news.php"));
fclose($file);
$blah = fopen("news.php", "w");
$news=stripslashes($news);
fwrite($blah, "$news $read");
fclose ($blah);
print "<meta http-equiv=\"refresh\"
content=\"1;http://mywebsite.com/\">";
?>