I'm generating a form with php/mysql. I'm using checkbox that looks like that:
<input type="checkbox" id="my2_3" name="my2_3" />
<input type="checkbox" id="my2_4" name="my2_4" />
<input type="checkbox" id="my2_5" name="my2_5" />
My issue is to retrieve those data (whether the checkbox is checked or not and the id). How can I retrieve that with php without knowing in advance what will be the $_POST[""] to request?