Cita:
Iniciado por andresdzphp En el método sólo necesitas retornar el array con los datos:
Código PHP:
Ver originalpublic function Query($SQL)
{
$result = $this->MySQLi->query($SQL);
return $result->fetch_all();
}
y con un foreach podrías recorrerlo.
Me devuelve:
Call to undefined method mysqli_result::fetch_all()