CODE:<?php
echo ("
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>
<title>Создание администратора</title>
</head>
<body>
<form action='regadmin.php' method='post'>
Введите ваше имя: <input type='text' name='adminname'><BR>
Введите ваш e-mail адресс: <input type='text' name='adminmail'><BR>
Введите пароль: <input type='password' name='password'><BR>
Повторите пароль: <input type='password' name='Confirmpassword'><BR>
<input type='submit' name='submit' value='Отправить'>
<input type='reset' name='reset' value='Очистить'>
</form>
</body>
</html>");
$adminname = trim($adminname);
$adminmail = trim($adminmail);
$password = trim($password);
$Confirmpassword = trim($Confirmpassword);
//Проверяем, заполнены ли все поля
if ($adminname=""&&$adminmail=""&&$password=""&&$Confirmpassword="")
{
echo ("Заполните все поля");
exit;
}
//Проверяем совпадают ли пароль и его подтверждение
if ($password!==$Confirmpassword)
{
echo ("Пароль и его подтверждение не совпадают");
exit;
}
include('../includes/config.php');
mysql_connect($dbhost, $dbusername, $dbpass);
mysql_select_db("users") or die("Не могу найти на DB \"users\": " . mysql_error());
$regadmin =MYSQL_QUERY("INSERT INTO admins (id,adminname,adminmail,password)". "VALUES ('NULL', '$adminname', '$adminmail', '$password')") or die("Не удалось добавить данные: " . mysql_error());
?> |