Re: Writing to an MySQL Database

2004-07-02 Thread Andy Bakun
On Fri, 2004-07-02 at 09:05, Michael Mason wrote: > 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. Errors like "unexpected $" that are output by a code or statement parser a

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 missi

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 )"; B

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: -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECT

Writing to an MySQL Database

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