Code: Select all
<?
$L1_array = array( 'Colors & Shapes' => array (
'Colors' => array (
'Orange',
'Blue',
'White',
'Red'
),
'Shapes' => array(
'Circle',
'Square',
'Triangle'
),
),
'Animals & People' => array (
'Animals' => array (
'Ducks',
'Snails',
'Dogs' => array (
'Huskies',
'Chows',
'Retrievers' => array (
'Golden Retriever',
'Chesapeake Bay Retriever',
'Curly-Coated Retriever',
'Flat-Coated Retriever',
'German Water Spaniel',
'Golden Retriever',
'Irish Water Spaniel'
),
'People' => array (
'Russians',
'Canadians',
'Germans'
),
),
)
?>Thanks!