Просмотр файла index.php

Размер файла: 765B
<html>
<head>
<title>Объявления</title>
</head>

<body><center><b>0бъявления</b></center><small>
<?php Error_Reporting(E_ALL & ~E_NOTICE);
$files="news.txt";
$max=10;
if($autor=="")
{$autor="администрация";}
$news=substr($news,0,999);
$autor=substr($autor,0,32);
if ($news!="" && $autor!="")
{
$time=Date("m.d.Y");
$new="\n<b>$time</b><br>
$news<br>
Автор:<b>$autor</b><BR>
* * *<br>";
$fp=fopen($files,"a+");
$fw=fwrite($fp,$new);
fclose($fp);
}
$lines=file($files);
$a=count($lines);
$u=$a-$max;
for($i=$a; $i>=$u; $i--)
{ echo $lines[$i]; }
?>
* * *<br/> <a href="new.php">Добавить (Opera Mini)</a><br/>
<a href="http://cekc.wen9.com">на главную</a></small>
</body></html>