Just seeing if there is a way I can avoid making a bespoke page for every table in my database, especially the small tables that are providing core functionality and don't get updated often, if at all.
We don't publish any, but you could do something like SHOW COLUMNS and then build the backend and frontend code based on the columns from the database. I know others have done that before, although I can't recall if any were open source I'm afraid.
Answers
We don't publish any, but you could do something like
SHOW COLUMNS
and then build the backend and frontend code based on the columns from the database. I know others have done that before, although I can't recall if any were open source I'm afraid.Allan
Thanks Allan