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 are sometimes related to the parser running off the end of its input. "$" is tokening parser parlance for "end of input/file". So "unexpected $" really means "unexpectedly reached the end of the file". As others have pointed out, this is because you were missing a quote that closes a string. -- Andy Bakun: a killer headache <[EMAIL PROTECTED]> -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]