Просмотр файла click_club/vhod.php

Размер файла: 881B
<?
Error_Reporting(E_ALL & ~E_NOTICE);
////////////////////
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
function myErrorHandler ($errno, $errstr, $errfile, $errline) {}
set_error_handler("myErrorHandler");
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
session_name("ID");
session_start();
////////////////////
include"inc/conf.php";
include "inc/conf_db.php";
include"ban.php";
include"inc/head.php";
////////////////////
echo"<form action=\"enter.php\" method=\"post\">
Логин:<br/>
<input type=\"text\" name=\"login\" maxlength=\"30\"><br/>
Пароль:<br/>
<input type=\"password\" name=\"password\" maxlength=\"30\"><br/>
<br/>
<input type=\"submit\" value=\"Вход\"><br/>";
/////////////////////
include"inc/foot.php";
?>