Re: [PHP-DB] Parse errors ,,, can you. impart me about it.

2005-01-03 Thread James Ferrara
Quite so, you're my new hero.
-James Ferrara
Jochem Maas wrote:
Norland, Martin wrote:
...
4) you thought this was [EMAIL PROTECTED]

that's simply hilarious! :-)
thanks Martin for making me laugh!
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-22 Thread Ford, Mike
To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm



On 21 December 2004 07:58, amol patil wrote:

 hallo friend,
 
 i have developed simple and small database website using php ,html
 and java script. 
 
 but i am getting these three parse errors on clicking ,
 
 i have checked 3-4 imes on these line numbers, but there wasn't any $
 variable. php script is also correctly written.
 what is this T_STRING error.
 
 can you help me regarding this.
 
 thank you.
 
 errors:
 
 Parse error: parse error, unexpected $ in
 /home/dollar1/public_html/signup.php3 on line 379

$ in PHP's error messages represents the end of the file, so PHP has reached
the end of signup.php3 when it's still expecting more program.  This means
you have an error somewhere in the preceding 378 lines -- most likely a
missing }.  (If PHP was complaining about a variable reference, the message
would refer to unexpected T_VARIABLE.)


Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning  Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Headingley Campus, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 

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



Re: [PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-21 Thread Dennis Cole
First, this has nothing to do with anytype of database whatsoever

Second, the code would help

The unexpected $ error is usually caused by a typo on the line above.

- Original Message -
From: amol patil [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, December 21, 2004 2:58 AM
Subject: [PHP-DB] Parse errors ,,, can you. impart me about it.


 hallo friend,

 i have developed simple and small database website using   php ,html and
java script.

 but i am getting these three parse errors on clicking ,

 i have checked 3-4 imes on these line numbers, but there wasn't any $
variable.
 php script is also correctly written.
 what is this T_STRING error.

 can you help me regarding this.

 thank you.

 errors:

 Parse error: parse error, unexpected $ in
/home/dollar1/public_html/signup.php3 on line 379


 Parse error: parse error, unexpected $ in
/home/dollar1/public_html/login.php3 on line 152

  Parse error: parse error, unexpected T_STRING in
/home/dollar1/public_html/addfunds.php3 on line 91



 -
 Do you Yahoo!?
  Yahoo! Mail - Find what you need with new enhanced search. Learn more.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.804 / Virus Database: 546 - Release Date: 12/7/2004

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



RE: [PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-21 Thread Norland, Martin
 -Original Message-
 From: amol patil [mailto:[EMAIL PROTECTED] 
 
 Parse error: parse error, unexpected $ in
/home/dollar1/public_html/signup.php3 on line 379
 Parse error: parse error, unexpected $ in
/home/dollar1/public_html/login.php3 on line 152
 Parse error: parse error, unexpected T_STRING in
/home/dollar1/public_html/addfunds.php3 on line 91

I'd wager:
1) line 378 in signup.php3 doesn't have a semicolon.
2) line 151 in login.php3 doesn't have a semicolon.
3) line 90 in addfunds.php3 doesn't have a semicolon, or should be
merged with line 91.  It's also possible you forgot to add print/echo
before the statement on line 91.
4) you thought this was [EMAIL PROTECTED]

The T_STRING error is saying the php parser encountered a string where
it shouldn't have.

For gods sake, post code if you want help tracking errors people!

Cheers,
- Martin Norland, Database / Web Developer, International Outreach x3257
The opinion(s) contained within this email do not necessarily represent
those of St. Jude Children's Research Hospital.


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



Re: [PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-21 Thread Jochem Maas
Norland, Martin wrote:
...
4) you thought this was [EMAIL PROTECTED]
that's simply hilarious! :-)
thanks Martin for making me laugh!
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-20 Thread amol patil
hallo friend,
 
i have developed simple and small database website using   php ,html and java 
script.
 
but i am getting these three parse errors on clicking ,
 
i have checked 3-4 imes on these line numbers, but there wasn't any $ variable.
php script is also correctly written.
what is this T_STRING error.
 
can you help me regarding this.
 
thank you.
 
errors:
 
Parse error: parse error, unexpected $ in /home/dollar1/public_html/signup.php3 
on line 379

 
Parse error: parse error, unexpected $ in /home/dollar1/public_html/login.php3 
on line 152

 Parse error: parse error, unexpected T_STRING in 
/home/dollar1/public_html/addfunds.php3 on line 91



-
Do you Yahoo!?
 Yahoo! Mail - Find what you need with new enhanced search. Learn more.