If I want to send the following to an HTML file
$m = '<A HREF="mailto:youxrname@aol.com">
youxrname@aol.com</A>');
header("Location: message.html?message=" . $m);
The message.html file sees it as
\"mailto:youxrname@aol.com\">youxrname@aol.com</A></font>
How do i get rid of the slashes
$m = '<A HREF="mailto:youxrname@aol.com">
youxrname@aol.com</A>');
header("Location: message.html?message=" . $m);
The message.html file sees it as
\"mailto:youxrname@aol.com\">youxrname@aol.com</A></font>
How do i get rid of the slashes