I'm very new to PHP. Currently,I'm facing one issue to escape \ and store in mysql DB.
eg., If the string is like $str = \\aaaa\bbb\\\cccc$$ , I would like to save that string in DB . However, I don't know how to escape those backslashes. Please help me settle it.
|
| |||
feedback
|
|
Your best option is to use prepared statements (e.g. through PDO):
| |||||||||||
feedback
|