Here is what I am trying to do. I have a MySQL DB displaying all records in the table.
One of the things it does is creates a check box for each record. The name for the check box is the records ID number, so each one is unique.
When the user selects any number of records, the following page that processes the request, how will the PHP page know how many check boxes are possible?
The processing page should have as many $xx =_GET[xx]; as there are records? right? Is there an easy way to generate the code needed?
Any help is appreciated.