Hi guys,
I have a form that lists items from a MySQL database. Next to each item is a Checkbox named after the Unique ID of the database item. At the bottom of the form is a button labelled 'Delete Selected'. So as you can see the idea is to allow the user to select as many or a few of the items as they want and flag them for deletion.
Submitting this form opens a new PHP document that will list the items selected and ask for confirmation before executing the MySQL statement.
I know how to handle form variables when I know how many there are but this is the first time I've come up against an indeterminate number of them.
So the question is how do I handle this and get the result I need?
Cheers,
Andy!