Let's say that you have to generate and display a table after querying a database using PHP. The table might have a lot of rows. One must be able to filter the resulting table using different criteria (single or multiple selections), much like an Excel table.
example:
+----------------------------------------------------------------+ | id | name | type | description | +----------------------------------------------------------------+ | input search | input search | drop down | drop down | | by id field | by name field | type select | sort asc/desc | +---------------+---------------+-------------+------------------+ | 1 | exampe_name | type 1 | bla bla | +---------------+---------------+-------------+------------------+ | 2 | exampe_name 2 | type 2 | tra la la | +---------------+---------------+-------------+------------------+ | ... | ... | ... | ... | +---------------+---------------+-------------+------------------+
So, I imagined that there should be two pages:
Has anybody encountered such kind of tasks? If yes, please share your solution, thanks in advance.
Take a look at the following: [ORIGINAL URL Removed...] Might that be what you're looking to do?
Based on @dunc's comment I removed the original URL - looks like we can repalce it with tablefilter.free.fr (the other option the OP found)