Also Known As: Strip Slashes, Remove Slashes
Examples:
<?php
$greeting = "Hello, I\'m Billy";
print stripslashes($greeting);
?>
This would output the string: Hello, I'm Billy
<?php
$said = 'Who said \"Live long and prosper\"?';
print stripslashes($said);
?>
This would output the string: Who said "Live long and prosper"?
Good tutorial :D
ReplyDelete