I have a page to download a backup of the MySQL information, but it is giving the following error since I started migrating from mysql_
to mysqli_
:
Fatal error: Can not use object of type mysqli as array in /home/.../public_html/biblioteca/backup.php on line 25
Before I had added a ,
inside the key [, ]
but it gave error too.
The error code line is:
$res = mysql_list_tables($mysqli [$dbname]) or die(mysqli_error("erro"));
I was not able to replace mysql_list_tables
.