Any help would be appreciated,
I'm making a script that will generate a new table based on the the content of a field. e.g.
fish_table1
size URL
big | very_big_fish
little | very_little_fish
small | very_small_fish
For each URL I need the script to generate a table in the db
(using this to generate dynamic URLS, but also need space to slap in some data for any URLS which need creating).
So far I've managed to create a loop to create the tables based on the content of ONE field in ONE database. So from the above example I can manage to create another 3 tables called, very_big_fish, very_little_fish, very_small_fish.
Is it possible to create another loop that will ensure that all my original fish_tables are all included (I may have fish_table1, fish_table2, fish_table3 etc).
How to echo a list of tables in a db please (so can convert to a $ and include this in the script) - cheers ! and thanks to anyone in advance.