Created
September 11, 2017 12:04
-
-
Save WeeHorse/e2d08de27873ef932ec5553b07eb06e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<form method="post"> | |
First name:<br> | |
<input type="text" name="firstname" value="Mickey"> | |
<br> | |
Last name:<br> | |
<input type="text" name="lastname" value="Mouse"> | |
<br><br> | |
<input type="submit" value="Submit"> | |
</form> | |
<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment