Hi
How can I access the section's names in this code:
$links = array(
'section a' => array ('a1', 'a2', 'a3', 'a4', 'a5'),
'section b' => array ('b1', 'b2', 'b3', 'b4', 'b5'),
'section c' => array ('c1', 'c2', 'c3', 'c4', 'c5'),
'section d' => array ('d1', 'd2', 'd3', 'd4', 'd5'),
'section e' => array ('e1', 'e2', 'e3', 'e4', 'e5')
);
foreach($links as $section) {
echo "** $section\n";
}
I was hoping $section would store 'section a' etc.?
cheers, Rob