1
I have a question regarding an array, I have an array that stores several arrays inside, this is the result:
Array (
[0] => Array (
[membro_id] => 1465
[membro_nome] => Gustavo Silva de Oliveira
[membro_estado] => 4
[membro_cidade] => Humaití
[membro_status] => 1
[membro_validade] => 31/07/2018
[estado_id] => 4
[estado_codigouf] => 13
[estado_nome] => Amazonas
[estado_uf] => AM
[estado_regiao] => 1
[status_id] => 1
[status_nome] => Ativo
)
[1] => Array (
[membro_id] => 1581
[membro_nome] => Ânio Neves de Souza
[membro_estado] => 4
[membro_cidade] => Manaus
[membro_status] => 1
[membro_validade] => 31/07/2019
[estado_id] => 4
[estado_codigouf] => 13
[estado_nome] => Amazonas
[estado_uf] => AM
[estado_regiao] => 1
[status_id] => 1
[status_nome] => Ativo
)
)
I want to take the field [membro_status] => 1
of each result, I did the following $membros[0]['membro_status']
, but only the first returns array
, someone could help out?
If you have difficulty making the code just ask.
– Lucas Gauna
On the fly man, thank you!
– Victor Hugo
Please inform us that your question has been answered.
– Lucas Gauna
@Victorhugo put the answer as right. It is below the place of the score. Only you have this power.
– Andrei Coelho