How would I be able to make a list of tables and traverse them in php?
I tried to figure out how the mysqli_query would output, but I keep getting an error.
$link = mysqli_connect($host,$user,$pass);
mysqli_select_db($link,$name);
$result = mysqli_query($link, "SHOW TABLES");
echo $result;
Essentially I want to be able to place them in an array and traverse the array going through each single table and do a quick query on them.
Thanks for the help.
edit: title
INFORMATION_SCHEMAdb. that's what it's there for.