Hello everyone,
I need to create about 35 tables on the fly , I need some feedbacks on the different, most effective ,way to create all those tables using php-mysql thanks.
i assume you have some sort of naming/structure convention for all of these tables? anyway store those convention rules in an array and loop thru it and run a CREATE table query on each iteration.
I very much doubt that this is the best solution. The need to create tables dynamically is a sure sign of an improperly designed data model.