I am looking for a possibility to pass db table name and column name via php and GET parameter.
I have a data grid with following structure: table_name1.column1, table_name2.column1, table_name2.column1.
There is a search function for the grid, where I need those parameters.
From the url "?table_name1.column1=22
" I am getting through the $_GET only table_name1_column1=22
How would you solve that?