I had a basic system that has an input for inserting dynamic tables in the database and when the table is created, I want to show the list of table name on dropdown list. And I want to select the table name and insert a file on it.
The file is csv, the problem is how do I display all the data from all the tables I had created in the database on my system.
This is what I want to do:
SELECT ALL FROM (ALL TABLES IN THE DATABASE) - - example only
Then query the result.
I prefer php and sql for doing this.
Is it possible?