I need to traverse the entire multidimensional array with each
and list
only. Here is the code:
$Carros = array(
array("BMW", 130000, "Novo"),
array("Strada", 40000, "Usado"),
array("CRUZE", 100000, "Semi-novo")
);
I need to traverse the entire multidimensional array with each
and list
only. Here is the code:
$Carros = array(
array("BMW", 130000, "Novo"),
array("Strada", 40000, "Usado"),
array("CRUZE", 100000, "Semi-novo")
);