Skip to content

Instantly share code, notes, and snippets.

@frankdarnese
Last active November 22, 2017 11:13
Show Gist options
  • Save frankdarnese/abe141ec869c3d25dacc to your computer and use it in GitHub Desktop.
Save frankdarnese/abe141ec869c3d25dacc to your computer and use it in GitHub Desktop.
Checkboxes in a web form!
<form action="process.php" method="post">
<input type="checkbox" name="flavours[]" value="strawberry">
<input type="checkbox" name="flavours[]" value="vanilla">
<input type="checkbox" name="flavours[]" value="chocolate">
<input type="submit" value="Submit!">
</form>
<?php
if (isset($_POST['flavours'])) {
$flavours = $_POST['flavours'];
}
$result = implode(",", $flavours);
echo $result;
exit;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment