Файл: [BESTSKRIPT.COM]_script2/script2/send_password.php
Строк: 32
<?php
include("header.php");
?>
<h2>Восстановить пароль</h2>
<?php
if ($_GET["page"]=="post") {
$email=htmlspecialchars($_POST[email]);
if (!preg_match("/^[a-z0-9.-_]+@[a-z0-9-_]+.([a-z0-9-_]+.)*?[a-z]+$/is", $email) or $email=="") {print"<table width="100%" border="0" cellspacing="0" cellpadding="10" style="BORDER: #ff0000 1px solid"><td width="32"><img src="img/error.gif" width="32" height="32" border="0"></td><td><b><font color="#ff0000">Ошибка! Вы неверно указали e-mail адрес.</font></b></td></table><br><br><a href="javascript:history.go(-1)"><< Вернуться назад</a>"; include("footer.php"); exit;}
$sql_se="SELECT * FROM tb_users WHERE email='$email'";
$result_se=mysql_query($sql_se);
$row_se=mysql_fetch_array($result_se);
if ($row_se[id]=="") {print"<table width="100%" border="0" cellspacing="0" cellpadding="10" style="BORDER: #ff0000 1px solid"><td width="32"><img src="img/error.gif" width="32" height="32" border="0"></td><td><b><font color="#ff0000">Ошибка! Данный e-mail адрес не зарегистрирован.</font></b></td></table><br><br><a href="javascript:history.go(-1)"><< Вернуться назад</a>"; include("footer.php"); exit;}
$message="Здравствуйте! Вы запросили пароль на сервисе Kipi-RU.Com. Ваш логин: $row_se[login] Ваш пароль: $row_se[password]";
mail("$email", "KIPI-RU.Com - Восстановление пароля", $message,
"From: kipirucom@gmail.com rn"
."X-Mailer: PHP/" . phpversion());
print"<table width="100%" border="0" cellspacing="0" cellpadding="10" style="BORDER: #00cc00 1px solid"><td width="32"><img src="img/ok.gif" width="32" height="32" border="0"></td><td><b><font color="#00cc00">Пароль успешно выслан на Ваш почтовый ящик $email.</font></b></td></table>";
include("footer.php"); exit;
}
?>
<form action="send_password?page=post" method="POST">
<b>Введите e-mail:</b><br>
<small><font color="#999999">Пароль будет выслан на Ваш почтовый ящик</font></small><br>
<input type="text" name="email" size="35" maxlength="30"><br>
<br>
<input type="submit" value="Выслать пароль">
</form>
<?php
include("footer.php");
?>