Oli Filth said the following on 07/11/2005 15:48:
> "INSERT INTO table (field) VALUES ('"
> . mysql_real_escape_string("This is \'some\' text")
> . "')"
Oops, that last one should be:
"INSERT INTO table (field) VALUES ('"
. mysql_real_escape_string("This is 'some' text")
. "')"