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  <?php
>
>    .....
>
>
>    181  ##############
>    182  # BEGIN CODE #
>    183  ##############
>    184
>    185  if ($goodtogo != "yes") {
>    186    sanitize_session();
>    187  }
>    188  else {
>    189    if ($state == "main") {
>    190      showmainscreen();
>    191    }
>    192
> >  193
>    194
>    195
>    196    elseif ($state == "add") {
>    197      adduser($product,$username);
>    198    }
>    199    elseif ($state == "search") {
>    200      searchuser($username);
>    201    }
>    202    else {
>    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]

Reply via email to