RE: [PHP] Parse error - new set of eyes?

2002-07-25 Thread John Holmes
> elseif ((!isset($HTTP_SESSION_VARS['clk']) || > (!isset($HTTP_SESSION_VARS['holy_cow']) || > (!isset($HTTP_SESSION_VARS['ipaddy']) || (!isset($HTTP_SESSION_VARS['a'])) Your parenthesis don't match up, if I can count correctly today. ---John Holmes... -- PHP General Mailing List (http://ww

Re: [PHP] Parse error - new set of eyes?

2002-07-25 Thread Nick Oostveen
Ok, I noticed a couple things. One: There's no } ending your elseif statement. Two (and the big one): Why all the opening brackets before your isset() functions? I'm not sure if you're trying to do some nested logic in there, but if so it will be much more readable if you use nested if stateme

Re: [PHP] Parse error - new set of eyes?

2002-07-25 Thread Analysis & Solutions
Hi: On Thu, Jul 25, 2002 at 02:40:28PM -0600, Jas wrote: > I am getting a parse error on line 14, I am trying to make sure session vars > are being set before rendering the page. This is lines 12,13,14 & 15. The way you posted it here, it's hard to tell which line is which. Layout your script