I have a webpage where two tables are showed, with a checkbox in each row for being selected or not.
Here an extract of the code, where tables are created based on values from a database.
When the page is in use, people has to select some rows (checkboxes) from table 1 and table 2.
After finish, a "Next" button is selected, and a new webpage is opened, where I'd like to have one single table showing only selected rows from table 1 and table 2 (and no more checkboxes).
As the value of the checkboxes, use the key that identifies the row in the database.
In the receiving php script, retrieve those rows from the database (with a WHERE keycolumn IN (value1, value2, ecc) ) and show the data.
Bookmarks