Размер файла: 1.97Kb
<?
include_once '../../sys/inc/start.php';
include_once '../../sys/inc/compress.php';
include_once '../../sys/inc/sess.php';
include_once '../../sys/inc/home.php';
include_once '../../sys/inc/settings.php';
include_once '../../sys/inc/db_connect.php';
include_once '../../sys/inc/ipua.php';
include_once '../../sys/inc/fnc.php';
include_once '../../sys/inc/user.php';
include_once '../../sys/inc/thead.php';
title();
err();
aut();
if (!$set['web'])
error_reporting(7);
$action=$_GET['action'];
echo '<div class=a><center>Анекдоты</center>';
if($action==False){$action="anekdot";}
if($action=="anekdot"){
$file=@file("base.dat");
if(!$file){echo'Анекдотов нет! Напиши свой и он появится в базе анекдотов!';}
$rand=rand(0,count($file)-1);
echo '<div class="title1"><center>'.$file[$rand].'</center>';
echo"<form action=?action=add& method=post><table><tr><td><center><b>Добавление анекдота:</b></td></center></tr><tr><td><input type=text name=anekdot></td><td><input type=submit></td></tr></table></form>";
echo 'Всего анекдотов:'.count($file);
}
#####################################
if($action=="add"){
$anekdot=substr($_POST['anekdot'],0,1024);
$anekdot=htmlspecialchars($anekdot);
if(eregi("http",$anekdot)){echo"Это не место для рекламы!";
require_once ("incfiles/end.php");
exit;
}
if($anekdot==""){echo'<div class="alarm"><center>анекдот пустой!!!</center></div>';
echo"<center><a href=\"anekdot.php\">К анекдотам</center></div>";
include_once './sys/inc/tfoot.php';
exit;
}
$open=fopen("base.dat","a+");
if(fwrite($open,$anekdot."\r\n")){echo"Анекдот успешно добавлен! =)";
}else{echo"Произошла ошибка при добавлении анекдота!";}
fclose($open);
}
echo"<center><a href=\"anekdot.php\">К анекдотам</center></div>";
include_once '../../sys/inc/tfoot.php';
?>