RE: [PHP] Re: why doesn't $books[$val][display] show the value

2002-05-10 Thread Ford, Mike [LSS]
> -Original Message- > From: Peter J. Schoenster [mailto:[EMAIL PROTECTED]] > Sent: 10 May 2002 06:40 [] > http://www.php.net/manual/en/language.types.string.php#language.types. string.parsing > > Where I see this example (in complex syntax section): > > > // This is wrong for the

Re: [PHP] Re: why doesn't $books[$val][display] show the value

2002-05-09 Thread Peter J. Schoenster
On 9 May 2002 at 15:25, Philip Hallstrom wrote: > It has to do with precedence (I think). When inside a double quoted > string PHP evalutes "$books[$val]" *first* and doesn't catch that > there's more to it... > > You can do this: > > $html.= " Yaddda yadda " . $books[$val][display]; > > And