After include this array code, I got "Division by zero"
warning.
<? $menus[] = array('text'=>'home', 'href'=>'#', 'sub'=>null);
$menus[] = array('text'=>'*', 'href'='*', 'sub'=>null);
$menus[] = array('text'=>'news', 'href'=>'#', 'sub'=>array(
array('text'=>'innews', 'href'=>'#'),
array('text'=>'outnews', 'href'=>'#')
)
); ?>
Please let me know how to make this code work.
Thanks in advance.