Hello ppl,
How can I read many checkboxes with the same name, using PHP?
An example.....
<input name="my_checkbox" value="1">
<input name="my_checkbox" value="2">
<input name="my_checkbox" value="3">
and now I want to read all the values of the variable $_POST[my_checkbox], but I can only get the value of the last checkbox. 🙁
How can I solve this problem please....
🙁