RE: [PHP] unexpected $ in ... WTF?

2004-04-15 Thread Ford, Mike [LSS]
On 14 April 2004 21:30, Brian V Bonini wrote: > Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line > 150 Just to add to previous responses, '$' is PHP's unhelpful notation for "end of file" (think regex end-of-string anchor, if it helps!). Cheers! Mike ---

Re: [PHP] unexpected $ in ... WTF?

2004-04-14 Thread Brian V Bonini
On Wed, 2004-04-14 at 16:47, Curt Zirzow wrote: > * Thus wrote Brian V Bonini ([EMAIL PROTECTED]): > > Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 > > You're missing a } somewhere. > > if (1 ) { > > ?> Yup, I sure was :-D -- s/:-[(/]/:-)/g BrianGnu

Re: [PHP] unexpected $ in ... WTF?

2004-04-14 Thread Curt Zirzow
* Thus wrote Brian V Bonini ([EMAIL PROTECTED]): > Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 You're missing a } somewhere. Curt -- "I used to think I was indecisive, but now I'm not so sure." -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

Re: [PHP] unexpected $ in ... WTF?

2004-04-14 Thread John W. Holmes
From: "Brian V Bonini" <[EMAIL PROTECTED]> > Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 > > 146: > 147: 148: } > 149: include "foobar.inc.php4"; > 150: ?> You missed a closing bracket or quote somewhere. ---John Holmes... -- PHP General Mailing List (http://www.

Re: [PHP] unexpected $ in ... WTF?

2004-04-14 Thread Daniel Clark
What about line 148 the "{" ... supposed to be there? > Brian V Bonini wrote: >> Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 >> >> 146: >> 147: > 148: } >> 149: include "foobar.inc.php4"; >> 150: ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] unexpected $ in ... WTF?

2004-04-14 Thread John Nichel
Brian V Bonini wrote: Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 146: 147: Your error is going to be somewhere above that in the script. Forgot a semi-colon, closing bracket/brace/etc, etc. -- ***

[PHP] unexpected $ in ... WTF?

2004-04-14 Thread Brian V Bonini
Parse error: parse error, unexpected $ in /foo/bar/foo.php4 on line 150 146: 147: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php