Hi,
I want to display my database, however I cannot used the conventional method (like this http://www.siteground.com/tutorials/php-mysql/display_table_data.htm )as the structure is unkown.
The user of the system can create and delete columns.
Does anyone know how I would be able to display the columns with the stored data?
If this helps, I can select the column names from information_schema:
SELECT column_name FROM information_schema.columns where table_name='tablename'";
Any help would be appreciated. Thanks.