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

Размер файла: 840B
<?
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
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_db.php";
include"inc/conf.php";
include"ban.php";
include"inc/head.php";
echo"<form action=\"reg.php\" method=\"post\">
Логин:<br/>
<input type=\"text\" name=\"login\" maxlength=\"30\"><br/>
Пароль:<br/>
<input type=\"password\" name=\"password\" maxlength=\"30\"><br/>
Ваш E-Mail:<br/>
<input type=\"text\"name=\"mail\" maxlength=\"70\"><br/>
Адрес ссылки:<br/>
<input type=\"text\" name=\"url\" value=\"http://\"><br/><br/>
<input type=\"submit\" value=\"Регистрировать\"><br/>";

include"inc/foot.php";
?>