In this situation, the user looks a series of records in an HTML table, which have been pulled from a database table.
The user selects certain records, and clicks on a submit button. The user then is allowed to go to additional pages of records to select more records.
Every time the user select records on a page, they are stored in a "pre-select" db table and I want to ask the user "Are you satisfied with your selection of records?" and show the selected records from the "pre-select" table to the user.
To do this, I would have to send the user to another page with a clean display of selected records.
But, of course, I get a "headers already sent" error because of the html table that displayed the original records that the user selected from.
How do I begin to resolve this?