View Single Post

  #2 (permalink)  
Old 04-03-2006
milahu
 
Posts: n/a
Default 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
}

Reply With Quote