Hi,
I have a list of checkboxes for the user to select/deselect and a submit button to submit the details to the database. If the list is over 20 records there is a next and previous link. I need to be able to submit all the details to the database from all pages not just the last.
I thought the best way to acheive this would be to pass the values of the checkboxes to the next page via the next link until the last page and then submit them all via the submit button - but how would this be done? Or is there another way to do this?
// next link
if($start_at+5<$numrows2) {
$show_table .='<a href="forum_list_posts.php?';
$show_table .= $_SERVER[argv][0];
$show_table .= "&start_at=$next\">Next >></a>";
}
//check box values in an array
<input type=\"checkbox\" name=\"auth[$post_id]\" value=\"1\" $auth_checked>
Thanks in advance fot your help.