Re: [PHP] significance of escape character in string in PHP
[email protected] (Ken Robinson)
| Newsgroups | php.general |
|---|---|
| Message-ID | <[email protected]> |
On 18.03.2013 09:10, Norah Jones wrote: > I am having an string which was have few ' (single quote) and few " > (double quotes) and was not able to insert into the mysql database. I > have replaced them with \' and \" and everything is fine. > Though this are fine now but don't understand the working and I could > have missed few corner cases also. Please suggest the working and > also > if there is some better way to achieve this. You should be using either mysql_real_escape_string or mysqli_real_escape_string (preferably the later) depending on how you're accessing the DB. Ken