Файл: 4wx.ru/wapma/index.php
Строк: 24
<?php
error_reporting(0);
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);
include 'head.php';
echo "<form action="regses.php" method="post">
<small>Сервер:</small><br/>
<input type="text" maxlength="75" name="server" value="localhost" disabled><br/>
<small>Пользователь:</small><br/>
<input type="text" maxlength="20" name="name" value=""><br/>
<small>Пароль:</small><br/>
<input type="text" name="password" value=""><br/>
<input type="submit" value="Войти"></form><br/>";
include 'foot.php';
?>