Лека, ПОЛУЧИЛОСЬ
СПАСИБО!!!
Вот тока сообщения не добавляюца
<?php
echo '<form action="index.php" method="post">';
echo 'Ваше МЫЛО:<br/><input type="text" name="email"><br/>';
echo 'Ваше NAME:<br/><input type="text" name="name"><br/>';
echo 'Ваше Сообщенэ:<br/><input type="text" name="msg"></br>';
echo 'Ваше NAME:<br/><input type="submit" value="Go!"></form>';
$files = "gb.txt";
$qq = 50;
if (!email) {$email = "None";}
$msg = substr($msg,0,999);
$email = substr($email,0,39);
$name = substr($name,0,39);
if ($msg != "" && $name != "") {
$time = Date("h:i:M:d");
$soo = "\n<b>$time $name (<a href=\"mailto: $email\">$email</a>)</b><br/>
$msg<hr>";
$fp = fopen($files, "a+");
$fw = fwrite($fp, $soo);
fclose($fp);}
$lines = file($files);
$a = count($lines);
$u = $a - $qq;
for ($i = $a; $i >= $u ;$i--) {echo $lines[$i];}
?>