Is there an easy way to select a table from a database and show all records and edit them, without knowing the fields in the database.
phpmyadmin
SELECT * FROM tablename
Then loop through the result set and use foreach() to loop through each array you fetch...