Re: [PHP] Nesting 'foreach ()'

2001-03-03 Thread Daniel Grace
"Tim Ward" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > is okay (but still doesn't work) although I have noticed that you seem to > need to code-block single statements in if ... else constructs > i.e > if (1==1) echo("fred") else echo("bill"): > should wor

RE: [PHP] Nesting 'foreach ()'

2001-01-30 Thread Tim Ward
ail-disclaimer.html > -Original Message- > From: Chris Fry [mailto:[EMAIL PROTECTED]] > Sent: 30 January 2001 03:56 > To: Tim Ward > Cc: PHP News Group (E-mail) > Subject: Re: [PHP] Nesting 'foreach ()' > > > Tim, > > Works fine in 4.04pl1 on NT. >

Re: [PHP] Nesting 'foreach ()'

2001-01-29 Thread Philip Olson
Perhaps : http://php.net/ChangeLog-4.php Under 4.0.2 it says : "Fixed problem with nested foreach()'s. (Andi, Zend Engine)" philip On Tue, 30 Jan 2001, Chris Fry wrote: > Tim, > > Works fine in 4.04pl1 on NT. > > I think you should have curly braces round the inner foreach as well? > > $

Re: [PHP] Nesting 'foreach ()'

2001-01-29 Thread Chris Fry
Tim, Works fine in 4.04pl1 on NT. I think you should have curly braces round the inner foreach as well? $fred = array(1,2,3,4,5,6); foreach ($fred as $fred1) { foreach ($fred as $fred2) { echo "$fred1 : $fred2"; } }; Chris Fry Tim Ward wrote: > according to