RE: [PHP] Can you find the parse error?

2002-03-29 Thread Kevin Stone
I have found it safer to use backticks on all of my table and field names. I doubt that's the problem but it's a good practice and something to try anyway. INSERT INTO `tblUserInfo` (`UserID`, `Complex`, `Contact`,.. etc.. By the way what are those complicated looking '".$var."' for? You shoul

RE: [PHP] Can you find the parse error?

2002-03-29 Thread Eric Kilgore
lgore Cc: php-general (E-mail) Subject: Re: [PHP] Can you find the parse error? On Fri, 29 Mar 2002, Eric Kilgore wrote: > What's wrong with this code that it would give this error? > > Parse error: parse error, expecting `','' or `';'' > > $que

Re: [PHP] Can you find the parse error?

2002-03-29 Thread Miguel Cruz
On Fri, 29 Mar 2002, Eric Kilgore wrote: > What's wrong with this code that it would give this error? > > Parse error: parse error, expecting `','' or `';'' > > $query = "INSERT INTO tblUserInfo (UserID, Complex, Contact, Address, State, > City, Zip, Phone, >Fax, email, fee) VALUES ('".$

RE: [PHP] Can you find the parse error?

2002-03-29 Thread Rick Emery
I ran it through my PHP. Worked fine. You may wish to close each line with a ". -Original Message- From: Eric Kilgore [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 3:46 PM To: php-general (E-mail) Subject: [PHP] Can you find the parse error? What's wrong with this code that

RE: [PHP] Can you find the parse error?

2002-03-29 Thread Eric Kilgore
There are a couple of carriage returns, but this has never affected any of my other code. I'm using dreamweaver. -Original Message- From: Henning, Brian [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 1:55 PM To: 'Eric Kilgore' Subject: RE: [PHP] Can you find