mySql and a single form

admin

Administrator
Staff member
This is what I'm doing:

I have a table with several columns,
select * from table1.

I'm putting all tha information on a page, generating a checkbox for every record, this will allow the users to select several records and click the go button to have them(the selected records) analized.

The checkbox name are generated as follow:

$i=0;
while (......)
{

$sl='a'.$i;
< .... name='$s1' ......>
}

The problem is (once the select the records and click "go" how do I know which records were selected in the previous page, I may have $a0, $a2, $a7 or I may have none of them,
Please I need help, if you guys dont get the picture, I can be more explicit, I've been thinking about this for days, Thanks hope to hear from you.
 
Back
Top