21 lines
411 B
PHP
21 lines
411 B
PHP
<?php // formtest2.php
|
|
if (!empty(($_POST['name']))) $name = $_POST['name'];
|
|
else $name = "(Not Entered)";
|
|
|
|
echo <<<_END
|
|
<html>
|
|
<head>
|
|
<title>Form Test</title>
|
|
</head>
|
|
<body>
|
|
Your name is: $name<br>
|
|
<form method="post" action="formtest2.php">
|
|
What is your name?
|
|
<input type="text" name="name">
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
_END;
|
|
?>
|