Hi
I want to pull data from one page to another depending if it was selected with a checkbox, but I`m not really sure how to do it. Any idea?
Lets say that I have a list of results and each result comes with a checkbox:
<?php echo $row['name]; ?>
<input name="print" type="checkbox" id="print" value="checkbox">
__________<
Allright, now the user selects from all those results "x" number of checkboxes. When he clicks submit it takes him to another page where only the results that were checked are listed. So how can I do that?
Is it something like?
$query_ = "SELECT Name, Owner FROM Name WHERE ID "echo= checked" or something like this";?
Any direction is appreciated