Display multiple table records with HTML #table html
Edit
by Jayaram Venkat - 10 years ago (2015-01-13)
How to display multiple table records in an HTML page?
| I need to to display multiple table records in HTML page using PHP and MySQL. |
Ask clarification
1 Recommendation
PHP data grid class: Display MySQL query results in HTML tables
This class can be used to display MySQL query results in HTML tables.
It executes a given SQL SELECT query and generates an HTML table defined by a template to display the query results.
The results table also shows links to navigate between query result pages. The number of result rows to display per page is configurable.
The results can be sorted by columns that the user may choose by clicking on column links. The list of sortable columns may be restricted.
A special column may be displayed with check box inputs to let the user choose specific rows to perform additional operations on the selected rows.
The content of the fields may be changed using custom callback functions.
The Javascript to handle row click events may also be customized.
Additional columns may be added to the generated table using a customization sub-class.
| by Manuel Lemos 26695 - 10 years ago (2015-01-27) Comment
There are many, many classes for simple purposes of displaying MySQL query results ad HTML tables. This is one of those classes. |