escaping characters
Moderator: General Moderators
escaping characters
I have a text field that outputs a string but for some reason it escapes apostrophes ( ' ). So if you type "john's computer" in the text field and echo the post I get "john\'s computer" is there some kind of method that will remove the back slash?
Re: escaping characters
magic_quotes are enabled. See: http://us2.php.net/magic_quotes
Re: escaping characters
stripslashes()