Reply to Re: 2 small Q's about mysql_real_escape_string()
Posted by Oli Filth on 11/08/97 11:31
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")
. "')"