<html>
<head>
</head>
<body>
<h1>
Добавление нового пользователя
</h1>
<form method="post" action="adduser.php">
<p>
Введите Имя:
<input type="text" name="name" size="30">
</p>
<p>
Введите Фамилию:
<input type="text" name="surname" size="30">
</p>
<input type="submit">
</form>
</body>
</html>
<?php
if (isset($_POST['name']))
{
$name = $_POST['name'];
echo $name;
}
else
{
echo "fool";
}
?>
if (isset($_POST['name']) && $_POST['name'] != '')