2
I need to check the value of one of the fields of a array but I’m not getting it.
var_dump($array_exemplo);
array(1) {
[0]=>
array(3) {
["primeiro"]=>
string(1) "1"
["segundo"]=>
string(1) "2"
["terceiro"]=>
string(1) "3"
}
}
var_dump($array_exemplo["segundo"]);
Notice: Undefined index: segundo in ...
Perfect... that’s what it was.
– Mamga