I have a page drawn from a MySQL database.
There are a variable amount of items per day in the database. I am making a checkbox toggle on the specific ID of each. Due to the different number of items in the database, how do I know on the next page how to parse these variables?
Here's a clearer example. The number of "items" will change depending on date:
<INPUT TYPE="checkbox" VALUE="item1" CHECKED></DIV></TD>
<INPUT TYPE="checkbox" VALUE="item2" CHECKED></DIV></TD>
<INPUT TYPE="checkbox" VALUE="item3" CHECKED></DIV></TD>
...
<INPUT TYPE="checkbox" VALUE="item10" CHECKED></DIV></TD>
After submitting the form, how do I know how many "item" variables there? Can the input values be accessed through an ENV variable?