I have a PHP script which generates dynamic checkboxes for example lets say the name of the checkbox is
weeknumber_dayofweek_checkbox_storynumber
so maybe i have 5 stories on monday and 2 stories on tuesday
so then it generates 7 checkboxes with names
36_monday_checkbox_1
36_monday_checkbox_2
36_monday_checkbox_3
36_monday_checkbox_4
36_monday_checkbox_5
36_tuesday_checkbox_1
36_tuesday_checkbox_2
so then i have another php file and i need to check to see if any of those are checked. I was thinking of using isset, but I'm not sure how to use it with this setup. Basically what I plan to do is if the checkbox is set, delete that story. Any ideas?