Skip to content

Instantly share code, notes, and snippets.

@johnmorris
Last active January 1, 2016 20:29
Show Gist options
  • Save johnmorris/8197182 to your computer and use it in GitHub Desktop.
Save johnmorris/8197182 to your computer and use it in GitHub Desktop.
Simple illustration using checkboxes in forms.
<?php
print_r($_POST);
?>
<form method="post">
Car <input type="checkbox" name="stuff[car]" value="1" />
Dog <input type="checkbox" name="stuff[dog]" value="1" />
<input type="submit" value="Submit" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment