hi, i have the following code:
update reviews set title='here\\'s an apostrophe' where reviewID=4
i am also echoing it to screen + it looks like it's escaped properly to me, but i still get this:
Warning: SQL error: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression ''here\'s an apostrophe'.......SQL state 37000 in SQLExecDirect.......
i am using Access with PHP 4.3.1 and the following:
magic_quotes_gpc On On
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off
any help appreciated - if i do the exact same query without the quote it works!!
ta..