I have a php-mysqli code that works find one my local server but on using it on my server i am getting a
Fatal error: Call to undefined function mysqli_fetch_all() in /home3/t561257/public_html/admin/database.php on line 49
The following part of the code is where the problem is.
function fetch_rows($queryname) {
$result = $this->connection->query($queryname);
$row = mysqli_fetch_all($result, MYSQLI_ASSOC);
return $row;
}
I use it in the following manner
$next_four_rows = $db_link->fetch_rows($query_four_latest);
$db_link is the class which has the method fetch_rows.
I am using php 5.5 on my local server where as the server is running 5.4.27 I am really clueless on how to fix it
See Question&Answers more detail:os