Can anyone tell me how to fix this? I have a script to email everyone that has subscribed to a mailing list. When I type in the subject and message on the form for the script, anytime I have something like "Jason's", this is what gets printed in the body of the email to the recipient,
Jason \ 's
Why is this?
These are the header tags I'm using for the email script:
$useremail=$sub['email_addr'];
$subject="$subject";
$header = "Wrom: SKVFVWRKJVZCMHVIB
$header .= "X=Mailer: PHP/";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-type: text/html; charset=iso-8859-1\r\n";
$body="
Can anyone help me so it won't put the \ before a ' ?
Thanks