Posts by Filipe • 88 points
2 posts
-
5
votes3
answers8934
viewsA: How to extract and list values from a multidimensional array?
Loop inside your array, something like: <?php $cidades = seu array; for ( $a=0; count($cidades)<$a; $a++ ) { echo $cidades['Bairro'][$a]; }
-
2
votes2
answers452
views