$lmenu_name_array = array(
"News" => array("news.php"),
"Forum" => array("forum.php"),
"Download" => array("download.php")
);
I want to get value "forum.php" but I want to get it through indexes not through names...
not like this:
$lmenu_name_array["Forum"][0]
but like this:
$lmenu_name_array[1][0]
WHY DOESN'T IT WORK??? Is it possible to get values inside array in this way