Hello you all
my english is poor, so i hope you'll understand my problem.
i have a form with some checkboxes. i name every checkbox witht the name verify[] and the value with some numeric number.
i.e:
<input type=checkbox name=verify[] value=1>
<input type=checkbox name=verify[] value=2>
<input type=checkbox name=verify[] value=3>
and so on.
i also have a submit button.
now, i also have a table namt tbl1 with this fields:
id,verifyID
what i want to do is that:
check which checkboxes weren't checked by the user, then check if it's value exist in the table, if it's true, i want to delete this row from the database.
i.e.: if the user didn't checked the first checkboxes (the one with the value=1), i want to check in the table if there is a row in tbl1 with the verifyID=1 and delete this row
hope you can help me