Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php // formtest2.php
- if (isset($_POST['name2'])) $name = $_POST['name2'];
- 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="name2">
- <input type="submit">
- </form>
- </body>
- </html>
- _END;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement