Escapes special characters in string which prepends backslashes to the following characters:
- \x00
- \n
- \r
- \
- ‘
- “
- \x1a
1 2 3 4 5 | mysql_real_escape_string($var) |
Escapes special characters in string which prepends backslashes to the following characters:
1 2 3 4 5 | mysql_real_escape_string($var) |