Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <body>
- <form method="post"> // if using get, change to get
- Favorite Color:
- <input type="text" name="color"> //must give name to the input
- <br>
- Favorite Food:
- <input type="text" name="food">
- <br>
- <input type="submit" value="Submit">
- </form>
- <br>
- <p>Best food is: <?=$_POST['food']?></p> //php is here - type ?= instead of ?php echo as shortform to print superglobals
- <p>Best color is: <?=$_POST['color']?></p>
- <a href="index.php">Reset</a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement