You don't need the embedded while loop
while ( list($key, $val) = each($bikes["Road"]) ) {
echo "<TD><IMG SRC=\"images/spacer.gif\" WIDTH=\"25\"
HEIGHT=\"1\" ALT=\"\" BORDER=\"0\"></TD>";
echo "<TD><A HREF=\"$val\"
CLASS=\"menu\">$key</A></TD>";
}
-----Original Message-----
From: Brian V Bonini [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 22, 2001 9:16 AM
To: Ignacio Vazquez-Abrams
Cc: PHP Lists
Subject: RE: [PHP] Newbie: array help....
That's what I thought, which seemed to be the obvious
however, when I tried that it returns an error.
"Warning: Variable passed to each() is not an array or object in pagetop.inc
on line 105"
PHP Version 4.0B2
BSDI BSD/OS 4.0.1
Zend Engine v0.90,
> -----Original Message-----
> From: Ignacio Vazquez-Abrams [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 22, 2001 11:56 AM
> To: Brian V Bonini
> Cc: PHP Lists
> Subject: Re: [PHP] Newbie: array help....
>
>
> each($bikes["Road"])
>
>
>
> On Mon, 22 Jan 2001, Brian V Bonini wrote:
>
> > I have this array;
> >
> > $bikes = array(
> > "Road" => array(
> > "Trek 5200" => "URL",
> > "Schwinn Fastback Pro" => "URL",
> > "Va Moots" => "url"
> > ),
> > "Mountain" => array(
> > "Trek Fuel 90" => "url",
> > "Schwinn Homegrown" => "url"
> > ),
> > "BMX" => array(
> > "Haro Mira 540" => "url",
> > "Schwinn Powermatic Pro" => "url"
> > ),
> > "Kids" => array(
> > "Schwinn Tiger" => "put URL here",
> > "Schwinn Bumblebee" => "URL"
> > )
> > );
> >
> > and am trying to list only a portion of it.
> > E.g., how can I reference only $bikes["Road"]
> > in the snippet below?
> >
> > while ( list($type, $subarray) = each($bikes) ) {
> > while ( list($key, $val) = each($subarray) ) {
> > echo "<TD><IMG SRC=\"images/spacer.gif\" WIDTH=\"25\"
> > HEIGHT=\"1\" ALT=\"\" BORDER=\"0\"></TD>";
> > echo "<TD><A HREF=\"$val\"
> CLASS=\"menu\">$key</A></TD>";
> > }
> > }
> >
--
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]
--
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]