Não há 'table id' no MySQL e, portanto, o conjunto de resultados de
SHOW TABLES
não tem índice id
. O único índice no conjunto de resultados é denominado 'Tables_in_DATABASENAME'. Além disso, você deve usar a biblioteca mysqli, pois a boa e velha biblioteca mysql está obsoleta. Preparando um exemplo:
<?php
$mysqli = new mysqli(
'yourserver',
'yourusername',
'yourpassword',
'yourdatabasename'
);
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") "
. $mysqli->connect_error;
}
$result = $mysqli->query('SHOW TABLES FROM `yourdatabasename` LIKE \'%food_%\'');
if(!$result) {
die('Database error: ' . $mysqli->error);
}
$posts = array();
// use fetch_array instead of fetch_assoc as the column
while($row = $result->fetch_array()) {
$tablename = $row[0];
$posts []= array (
'tablename' => $tablename
);
}
var_dump($posts);