Размер файла: 552B
<? include("head.html") ?>
<div class=title> Управление Новостями </div>
<div class=menu>
<form method="GET">
<input type="text" name="all"><BR>
<input type="submit" value="Сохранить">
<?
//------------------
$all = $_GET['all'];
{
if($all == $all)
{
$fp = fopen ( "../data/news.txt" , "a" );
flock ( $fp , LOCK_EX );
fputs ( $fp , "$all " );
fclose ( $fp );
}
}
//------------------
?>
<?
echo "<BR><BR>Весь блок новостей";
include("../data/news.txt")
?>
</div>
<? include("copy.html") ?>