Просмотр файла gb/add.php

Размер файла: 1.44Kb
<?php

/*Автор: MEDIATOR ([email protected]) http://ilime.org.ua*/
extract($HTTP_POST_VARS);
extract($HTTP_GET_VARS);
include("config.php");
include("head.php");
if(empty($name) and !empty($msg)) { echo '<div class=err>Вы не ввели имя</div>'; }
if(empty($msg) and !empty($name)) { echo '<div class=err>Вы не ввели Сообщение</div>'; }
if(!empty($msg) and !empty($name)){
$msg=htmlspecialchars($msg);
$name=htmlspecialchars($name);
$msg=substr($msg,0,512);
$name=substr($name,0,20);
$msg=str_replace("[b]","<b>",$msg);
$msg=str_replace("[/b]","</b>",$msg);
$msg=str_replace("[i]","<i>",$msg);
$msg=str_replace("[/i]","</i>",$msg);
$msg=str_replace("[u]","<u>",$msg);
$msg=str_replace("[/u]","</u>",$msg);
$msg=str_replace("[B]","<b>",$msg);
$msg=str_replace("[/B]","</b>",$msg);
$msg=str_replace("[I]","<i>",$msg);
$msg=str_replace("[/I]","</i>",$msg);
$msg=str_replace("[U]","<u>",$msg);
$msg=str_replace("[/U]","</u>",$msg);
$file=fopen("msg.dat","r+");
$buff=file_get_contents("msg.dat"); $text=$name."::".date("H:i:s d.m")."::".$msg."\n".$buff;
fputs($file,$text);
fclose($file);
header("Location:index.php");
}
if(empty($name) and empty($msg)) {
echo '<div class=head>Добавление записи</div><form action="add.php" method="post">Имя:<br/><input type="text" name="name"/><br/>Сообщение:<br/><input type="text" name="msg"/><br/><input type="submit" value="Добавить"/></form>';
}
include("foot.php");
?>