Re: Need advice on extracting database entries
You list the entries and add sth. like
<input type="select" name="subm[]" value="$ID" />
after each one where $ID is the submission's id.
Now you can simply evaluate the form data:
foreach ($_POST['subm'] as $id) {
// print submission no. $id here
}
|