From FORM :
John's book
$answer = addslashes($answer);
$msg = "Hello". $answer . " Thanks";
mail($to, "Subject", $answer, $from)
And now I got this in my email:
Hello John\'s book Thanks
in my email msg, how to fix that ?
use stripslashes(); to remove the slashes you added with addslashes();