$('form').serialize();
<label>Check what applies:</label>
Laptop Owner: <input type="checkbox" name="applicable" value="laptop owner" /> <br />
Samsung Tv Lover: <input type="checkbox" name="applicable" value="Samsumg tv lover" /> <br />
Animae Watcher: <input type="checkbox" name="applicable" value="Animae watcher" />
If I check “Laptop Owner” and “Animae Watcher” is only returns the latter, why? I need it to return both.
EDIT
I should say when I send the forms values to PHP it only returns the last checked checkbox, this is what my php looks like:
<?php
echo $_POST['applicable'].' says PHP';
?>
change
name="applicable"toname="applicable[]"