[PHP] Pulling my hair out over Netscape...

2001-02-28 Thread Jackson, Michael

   Hello everyone...  I've been developing a PHP app here for a while
now, and I have been encountering some most frustrating situations in which
something will work in IE but not Netscape.  Some of this seems to be IE's
allowances for sloppy coding... :)  But here's a new one.  I have a form,
that if you were to submit this form once, it will always retain the same
value.  I.E. I enter  a value, hit OK.  Then I press the back button.  Then
I enter a DIFFERENT value, and hit OK.  The SAME value is passed to the PHP
script!  I'm using the post method, and I haven't found a way to shake this
yet!  This is afflicting Netscape 4.7 and Netscape 6.  Driving me crazy

  Thanks in advance,
  Michael

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Parse error on blank line...

2001-02-05 Thread Jackson, Michael

 Even if I was missing a brace, doesn't it seem odd that it would always
give me a syntax error on the same line?  It's as if it's arbitrarily
deciding to break there...  If I add a new line after mailto:[EMAIL PROTECTED]]
Sent: Monday, February 05, 2001 05:38 PM
To: April; Jackson, Michael; [EMAIL PROTECTED]
Subject: RE: [PHP] Parse error on blank line...


I'm not sure where it is, but I agree that you are missing a curly brace
somewhere.  Take a break from your code for a bit, come back to it, and
start matching braces.  I suggest getting a coffee or some tea.

johnny p.

> -Original Message-
> From: April [mailto:[EMAIL PROTECTED]]
> Sent: Monday, February 05, 2001 4:31 PM
> To: Jackson, Michael; [EMAIL PROTECTED]
> Subject: Re: [PHP] Parse error on blank line...
>
>
> You missed a } in there.  Inside of that else, you have an
> if, but you never
> close the else.
>
> >190  showmainscreen();
> >191}
> >192
>
> should be
>
> >190  showmainscreen();
> >191}
> >192}
>
> - Original Message -
> From: "Jackson, Michael" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, February 05, 2001 4:23 PM
> Subject: [PHP] Parse error on blank line...
>
>
> >   Hello all,
> >
> >   I hope this doesn't turn out to be a stupid question,
> but we will
> > see...   I am getting parse errors on blank lines.  Not
> commented, but
> > totally blank.  And seemingly no matter how I manipulate
> the text, it
> turns
> > out to always be on the same line.  I'm using vim with
> syntax tags to help
> > me check my basic syntax, and everything seems to be closed
> - I am at a
> > total loss as to what could be wrong!  Let me try to
> clarify:  Take the
> > following snippet of code - It errors out on line 193.  I
> have no idea
> why.
> > I added blank lines to shift the code around - and if I
> eliminated all of
> > the blank lines, I still error out on 193.
> >
> >001   >
> >.
> >
> >
> >181  ##
> >182  # BEGIN CODE #
> >183  ##
> >184
> >185  if ($goodtogo != "yes") {
> >186sanitize_session();
> >187  }
> >188  else {
> >189if ($state == "main") {
> >190  showmainscreen();
> >191}
> >192
> > >  193
> >194
> >195
> >196elseif ($state == "add") {
> >197  adduser($product,$username);
> >198}
> >199elseif ($state == "search") {
> >200  searchuser($username);
> >201}
> >202else {
> >203  doh();
> >204}
> >205  }
> >206
> >207  
> >208  # END CODE #
> >209  
> >210  ?>
> >
> >  Any help is greatly appreciated!
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail:
> [EMAIL PROTECTED]
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
> [EMAIL PROTECTED]
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Parse error on blank line...

2001-02-05 Thread Jackson, Michael

  Hello all,

  I hope this doesn't turn out to be a stupid question, but we will
see...   I am getting parse errors on blank lines.  Not commented, but
totally blank.  And seemingly no matter how I manipulate the text, it turns
out to always be on the same line.  I'm using vim with syntax tags to help
me check my basic syntax, and everything seems to be closed - I am at a
total loss as to what could be wrong!  Let me try to clarify:  Take the
following snippet of code - It errors out on line 193.  I have no idea why.
I added blank lines to shift the code around - and if I eliminated all of
the blank lines, I still error out on 193.

   001193
   194
   195
   196elseif ($state == "add") {
   197  adduser($product,$username);
   198}
   199elseif ($state == "search") {
   200  searchuser($username);
   201}
   202else {
   203  doh();
   204}
   205  }
   206
   207  
   208  # END CODE #
   209  
   210  ?>

 Any help is greatly appreciated!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]