Skip to content

Instantly share code, notes, and snippets.

@Scimonster
Created September 23, 2014 18:35
Show Gist options
  • Save Scimonster/49facf61de3e6a8b90a0 to your computer and use it in GitHub Desktop.
Save Scimonster/49facf61de3e6a8b90a0 to your computer and use it in GitHub Desktop.
form submit with no name
<?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