Qbasicnews.com

Full Version: Is there a way (mail() function in PHP)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a Contact Me form on The Geekery that uses the mail() function to submit a message to my email address.
The only problem is that I get a backslash (\) beside all special characters (', ", etc.) in the message. I assume it's because PHP has to escape the special characters, by default.
Is there a way to omit the \'s?
The functions addslashes() and stripslashes() might help, but I'm not too sure how email and php work...
I'll look into it, thanks.