Writing to an MySQL Database

2004-07-02 Thread Michael Mason
Im confused and obviously missing something really fundamental here I would appreciate it if you could glance at my code for the above. Basically Im trying to write information to the database now I have managed to resolve the connection issue. Its the Data Capture section thats

Re: Writing to an MySQL Database

2004-07-02 Thread Matt MacLeod
You're missing a closing at the end of your sql on the last line which may be throwing up an error. Cheers, Matt On 2 Jul 2004, at 15:05, Michael Mason wrote: Write.txt -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: Writing to an MySQL Database

2004-07-02 Thread Jigal van Hemert
It's the Data Capture section that's causing issues. I keep getting an error telling me there's an Unexpected $ on a line that's actually outside even the HTML tag. You forgot to end the $sql = .. with a closing quote. The line now ends with ); while you probably want it to be ); BTW it's

Re: Writing to an MySQL Database

2004-07-02 Thread Peter Brawley
Michael, you're missing a quote just before the last semi-colon. PB - Original Message - From: Michael Mason To: 'MySQL Mailing List' Sent: Friday, July 02, 2004 9:05 AM Subject: Writing to an MySQL Database I’m confused and obviously missing something

Re: Writing to an MySQL Database

2004-07-02 Thread Andy Bakun
On Fri, 2004-07-02 at 09:05, Michael Mason wrote: Its the Data Capture section thats causing issues. I keep getting an error telling me theres an Unexpected $ on a line thats actually outside even the HTML tag. Errors like unexpected $ that are output by a code or statement parser are