Hi,

Well it depends, on which elements /2nd/ dimension you
wanna see!

here's some code:

$myarr[0][0] = "sdkjsjks";
$myarr[1][0] = "dsjkdkjsd";
$myarr[1][1] = "hsjdsh";
$myarr[1][2] = "dsjkdsjkdkjsdkjs";

echo sizeof($myarr); // would print 2, element 0 and
1.
echo sizeof($myarr[0]); would print 1, 0 of 0.
echo sizeof($myarr[1]); would print 3, 3 of 1.

Hope that helps. It goes on into as many dimensions!

=====
To find out more about me : http://www.geocities.com/mimodit
My bookmarks are available @ http://mukul.free.fr

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

-- 
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