Hello,

I am working on a menu script that I wanted to use multi-dimensional arrays
for.

Here is the conf file I have:

//Main Menu Array
$main_menu[0] = "Menu 1";  //Represents the name of the menu

//Menu 1 Array
$main_menu[0][0] = "Test 1";
$main_menu[0][1] = "Test 2";
$main_menu[0][2] = "Test 3";
$main_menu[0][3] = "Test 4";

When I try to us count like:

$count = count($main_menu[0]);

I only get 1.  My question is how do I count a multi dimensional array.

Thanks for the help,
Brandon


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to