<?php
$result = '';
if (isset($_POST['submit'])) {
$dbc = mysqli_connect('localhost', 'root', 'rfpfrb90210', 'aliendatabase')
or die ("Ошибка соединения с MySQL-сервером" . mysql_error());
mysqli_set_charset($dbc, "utf8");
$query = "
INSERT INTO
`aliens_abduction`
SET
`first_name` = '".mysqli_real_escape_string($dbc, $_POST['firstname'])."',
`last_name` = '".mysqli_real_escape_string($dbc, $_POST['last_name'])."',
`when_it_happened` = '".mysqli_real_escape_string($dbc, $_POST['when_it_happened'])."',
`how_long` = '".mysqli_real_escape_string($dbc, $_POST['how_long'])."',
`how_many` = '".mysqli_real_escape_string($dbc, $_POST['how_many'])."',
`alien_description` = '".mysqli_real_escape_string($dbc, $_POST['alien_description'])."',
`what_they_did` = '".mysqli_real_escape_string($dbc, $_POST['what_they_did'])."',
`fang_spotted` = '".mysqli_real_escape_string($dbc, $_POST['fang_spotted'])."',
`other` = '".mysqli_real_escape_string($dbc, $_POST['other'])."',
`email` = '".mysqli_real_escape_string($dbc, $_POST['email'])."'
";
mysqli_query ($dbc, $query) or die("Ошибка при выполнении запроса к базе данных:" . mysql_error());
mysqli_close($dbc);
$result = '
Спасибо за заполнение формы.<br>
Вы были похищены '.htmlspecialchars(stripslashes($_POST['when_it_happened'])).'
и отсутствовали в течении '.htmlspecialchars(stripslashes($_POST['how_long'])).'<br>
Количество космических пришельцев: '.htmlspecialchars(stripslashes($_POST['how_many'])).'<br>
Опишите их: '.htmlspecialchars(stripslashes($_POST['alien_description'])).'<br>
Что они делали? '.htmlspecialchars(stripslashes($_POST['what_they_did'])).'<br>
Видели ли вы мою собаку Фенга? '.htmlspecialchars(stripslashes($_POST['fang_spotted'])).'<br>
Дополнительная информация: '.htmlspecialchars(stripslashes(nl2br($_POST['other']))).'<br>
Ваш адресс электронной почты: '.htmlspecialchars(stripslashes($_POST['email'])).'
';
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Космические пришельцы похищали меня - сообщение о похищении</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h2>Космические пришельцы похищали меня - сообщение о похищении</h2>
<?php if (!empty($result)) echo '<div style="margin:10px 0;">'.$result.'</div>'; ?>
<p>Расскажите свою историю о похищении вас космическими пришельцами:</p>
<form method="post" action="report.php">
<label for="firstname">Имя:</label>
<input required type="text" id="firstname" name="firstname" /><br>
<label for="lastname">Фамилия:</label>
<input required type="text" id="lastname" name="lastname" /><br>
<label for="email">Ваш адресс электронной почты?</label>
<input required type="text" id="email" name="email" /><br>
<label for="whenithappened">Когда это произошло?</label>
<input required type="email" id="whenithappened" name="when_it_happened" /><br>
<label for="howlong">Как долго вы отсутствовали?</label>
<input required type="text" id="howlong" name="howlong" /><br>
<label for="howmany">Сколько их было?</label>
<input required type="text" id="howmany" name="howmany" /><br>
<label for="aliendescription">Опишите их:</label>
<input required type="text" id="aliendescription" name="aliendescription" size="32" /><br>
<label for="whattheydid">Что они делали с вами?</label>
<input required type="text" id="whattheydid" name="whattheydid" size="32" /><br>
<label for="fangspotted">Видели ли вы мою собаку Фенга?</label>
Да <input required id="fangspotted" name="fangspotted" type="radio" value="yes" />
Нет <input required id="fangspotted" name="fangspotted" type="radio" value="no" /><br>
<img src="fang.jpg" width="100" height="175"
alt="My abducted dog Fang." /><br>
<label for="other">Дополнительная информация?</label>
<textarea id="other" name="other"></textarea><br>
<input type="submit" value="Сообщение о похищении" name="submit" />
</form>
</body>
</html>