Created
September 23, 2014 18:35
-
-
Save Scimonster/49facf61de3e6a8b90a0 to your computer and use it in GitHub Desktop.
form submit with no name
This file contains 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
<?php | |
var_dump($_POST); | |
?> | |
<form method="post"> | |
<input type="text" name="text" /> | |
<select> | |
<option>a</option> | |
<option>b</option> | |
<option>c</option> | |
</select> | |
<input type="submit" > | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment