I copied this from the php manual because I'm trying to learn about arrays.
I'm getting a parse error and I can't figure out why. Anyone see anything wrong here?
<?
$a = array(
"apple" => array(
"color" => "red",
"taste" => "sweet",
"shape" => "round"
),
"orange" => array(
"color" => "orange"
"taste" => "tart"
"shape" => "round"
),
"banana" => array(
"color" => "yellow"
"taste" => "gross"
"shape" => "cylindrical"
)
);
echo $a["apple"]["taste"];
?>