I have this array and I want to put the string "Banana" on the screen.
$frutas = array (
"frutas" => array("a"=>"Laranja", "b"=>"Banana", "c"=>"Maçã"),
"numeros" => array(1, 2, 3, 4, 5, 6),
"buracos" => array("primeiro", 5 => "segundo", "terceiro")
);
How can I do this?