using the following E-mail form all that is sent hsa danjorous charictors slashed... but I don't want it to send that way... what can I do about it???
<?
if(!$send)
{
echo("
<form method = 'post' action = '$PHP_SELF'>
<table>
<TR><TD>From:<input type = 'text' name = 'from'></TD></TR>
<TR><TD>To:<input type = 'text' name = 'to'></TD></TR>
<TR><TD>Subject: <input type = 'text' name = 'subject' size = '53'></TD</TR>
<TR><TD>Message: <BR><textarea name = 'message' cols = '50' rows = '15' wrap = 'virtual'></textarea></TD></TR>
<TR><TD align = 'right' colspan = '3'><input type = 'submit' name = 'send' value = 'Send'></TD></TR>
</table></form>
");
} else {
echo("<a href = '$PHP_SELF'>Message Sent</a>");
$headers = "From: $from\nContent-Type: text/html\n";
mail("$to", "$subject", "$message", "$headers");
}
?>
Thank You Travis