Well, I make a query in Mysql like this:
$usuario = $conexao->query("select * from cadastros");
I put a json like this:
// Monta array das tabelas
while ($resultado_tabelas = mysqli_fetch_object($usuario)) {
// Monta array
$tabelas[] = array(
"id" => (int) $resultado_tabelas->id,
"nome" => $resultado_tabelas->nome
);
}
Can you do this without using while
? I tried it like this:
mysqli_fetch_array($usuario, MYSQLI_ASSOC),
But I only get 1 result.