[PHP] R: [PHP] Little question

2001-05-09 Thread Gabriele Biondo
> this : > > if ... $myOra="" ... > > should be more like : > > if ... $myOra == "" ... > > essentially you're setting $myOra as blank everytime which evaluates to > true, then it ends up printing the blank, which is not good. regarding > typos, this is a common one and since it reveals no

RE: [PHP] Little question

2001-05-09 Thread Neil Kimber
sage- From: Philip Olson [mailto:[EMAIL PROTECTED]] Sent: 09 May 2001 10:23 To: Gabriele Biondo Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Little question this : if ... $myOra="" ... should be more like : if ... $myOra == "" ... essentially you're setting $myOr

Re: [PHP] Little question

2001-05-09 Thread Philip Olson
this : if ... $myOra="" ... should be more like : if ... $myOra == "" ... essentially you're setting $myOra as blank everytime which evaluates to true, then it ends up printing the blank, which is not good. regarding typos, this is a common one and since it reveals no error ... it can be f

Re: [PHP] Little question

2001-05-09 Thread root
This snippet should be used as an example of badly written and presented code. It tries too hard to do a simple job and in the result fails dismally. I suggest Gabrielle, that you try to be a little more careful in your coding and not so smart. I can find no less than four errors that I put dow

[PHP] R: [PHP] Little question

2001-05-09 Thread Gabriele Biondo
Already added, nothing changed at all... > -Messaggio originale- > Da: Jason Murray [mailto:[EMAIL PROTECTED]] > Inviato: mercoledì 9 maggio 2001 9.56 > A: 'Gabriele Biondo' > Oggetto: RE: [PHP] Little question > > > > > This needs to have a ?&

[PHP] Little question

2001-05-09 Thread Gabriele Biondo
Hi, Folks... I have this little snippet of code: Orario: It should print a little table with the string "MY STRING"... ... unfortunately, it doesn't. Any suggestion BTW: I run this code on the following configuration: PHP Version: 4.0