> > If you're looking to loop through your array, there are other
methods.

> Well which kind of methods are you talking about?? could you tell me
some
> for do it??

foreach($array as $key=>$value)

www.php.net/foreach

while(list($key,$value) = each($array)

www.php.net/each
www.php.net/list

$cnt = count($array);
for($x=0;$x<$cnt;$x++)

www.php.net/count

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to