Final
Final
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?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;
|
||||
?>
|
||||
Reference in New Issue
Block a user