I have a form, and inside it there's a while() with checkboxes.
I wish to have so when you mark and then press submit, the message will remove.
Now, I have the checkboxes, and the submit button and so. Now all my checkboxes are like this:
<input class="cbPick" name="cbPick" type="checkbox" value="<?php echo $id; ?>">
How can i work with that in PHP? Should i do, $_POST["cbPick"] to know if its marked or not ?
And when i have more with these, how can i know which is which?