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

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

RE: [PHP] Little question

2001-05-09 Thread Neil Kimber
:[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 $myOra as blank everytime which evaluates to true, then it ends up printing