I have an array structure, like this:
$families = array
(
"Griffin"=>array
(
"Father" => "Peter",
"Mother" => "Lois",
"Child" => "Megan"
),
"Brown"=>array
(
"Father" => "Cleveland",
"Mother" => "Loretta",
"Child" => "Junior"
)
);
My question is:
How do I add another array called "Simpsons" to this structure with "Homer", "Marge" and "Bart" as the data?
Thanks guys....