Created
January 24, 2012 20:26
-
-
Save glynrob/1672358 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
<form method="post" id="myform" action="/saveform"> | |
Name: <input name="name" type="text" value="" /><br /> | |
Address: <textarea name="address"></textarea><br /> | |
Gender: <select name="gender"> | |
<option value="M">Male</option> | |
<option value="F">Female</option> | |
</select><br /> | |
Interests:<br /> | |
1: <input name="interests[]" type="text" value="" /><br /> | |
2: <input name="interests[]" type="text" value="" /><br /> | |
3: <input name="interests[]" type="text" value="" /><br /> | |
4: <input name="interests[]" type="text" value="" /><br /> | |
5: <input name="interests[]" type="text" value="" /><br /> | |
Sign up for our newsletter: <input name="signup" type="checkbox" value="1" /><br /> | |
<input name="submit" type="submit" value="Submit" /> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment