1
Good do a query in Mysql so:
$usuario = $conexao->query("select * from cadastros");
I ride 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
);
}
You can do that without using the while
? I tried so:
mysqli_fetch_array($usuario, MYSQLI_ASSOC),
But I only get 1 result.