For the user extension that I am writing, I have an ext_tables.sql file that loads during installation.
I would like to insert some dynamic data into tables created from ext_tables.sql during the installation procedure using PHP code. Is it possible? If so, what should I do and where should I do it?
Alternatively, is it possible for the PHP code to create tables (using the database interface) during installation, rather than relying on ext_tables.sql? Again, if so, what do I need to do for this and where should I do it.
source share