I am trying to insert data into a remote ms access database. it will be text from a field within a form. however i am not sure if i am escaping all the correct characters. I am using the odbc socket server from this article
http://www.phpbuilder.com/columns/timuckun20001207.php3
I am escaping single quotes like this:
$form_text = str_replace("'", "''",$comments);
If anyone has any ideas please let me know.
Thanks