string addslashes ( string $str )
Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote (‘), double quote (“), backslash (\) and NUL (the NULL byte).
Example:
<?php
$string = "My name is 'Jack Smit'";
// Outputs: My name is \'Jack Smit\'echo addslashes($string );
?>
{ 0 comments… add one now }