I just looked at my hosting service thinkg it may have been because they
just upgraded to 4.1 php. so I dumped my database and loaded it to my
machine at home and find that it does the same thing.

I have 4.06 php on win me my hosting service is 4.1 php on redhat linux so
I'm thinking that is not the case.

I have used this code through out my site and this is the only part it does
this on and I am not understanding why.

Jennifer




"Natalie Leotta" <[EMAIL PROTECTED]> wrote in message
7546CB15C0A1D311BF0D0004AC4C4B0C024ABFC4@SSIMSEXCHNG">news:7546CB15C0A1D311BF0D0004AC4C4B0C024ABFC4@SSIMSEXCHNG...
> My officemate and I talked about this and the only thing he could come up
> with was a possible problem with your parser.  Are you using a beta
version
> or something unusual?  I don't know if you have a way to know this - the
> programmers didn't set up PHP where I work, but I know our web server is
> apache and it's on a unix box.  I've never run into this problem before.
> Have you had it happen in other programs?  Have you ever used this code in
> another program?  If it's consistently incorrect then it may be a problem
> with your parser.  That's not really my area of expertise, but it's
> something you could look into if no one else has any better ideas :-)
>
> -Natalie
>
> -----Original Message-----
> From: Jennifer Downey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 23, 2002 12:26 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] If else question
>
>
> It shows both.
>
> "Natalie Leotta" <[EMAIL PROTECTED]> wrote in message
> 7546CB15C0A1D311BF0D0004AC4C4B0C024ABFC3@SSIMSEXCHNG">news:7546CB15C0A1D311BF0D0004AC4C4B0C024ABFC3@SSIMSEXCHNG...
> > Does it show the message and the form or just the message?
> >
> > -Natalie
> >
> > -----Original Message-----
> > From: Jennifer Downey [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, April 23, 2002 12:23 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [PHP] If else question
> >
> >
> >
> > > If and else expect to be followed by exactly 1 statement. To
> > > aggregate multiple statements as one, surround them with {curly
> > > braces}. I'm guessing you didn't do that, and you're seeing the
> > > execution of all but the first of the statements following the else.
> > >
> > > So it should be:
> > >
> > >   if ($var<1)
> > >     echo "can't be found";
> > >   else
> > >   {
> > >     echo "first line of form";
> > >     echo "second line of form";
> > >   }
> > This is what I have:
> >
> > if($quantity < 1)
> > {
> > echo "Sorry I can't seem to locate this item";
> > }
> > else
> > {
> > do this
> > }
> > So yes I have done exactly as you have stated and it still shows the
> > form.
> >
> > Jennifer
> >
> >
> > ---
> > Outgoing mail is certified Virus Free.
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.351 / Virus Database: 197 - Release Date: 4/19/2002
> >
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.351 / Virus Database: 197 - Release Date: 4/19/2002
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.351 / Virus Database: 197 - Release Date: 4/19/2002



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to