|  | Posted by cover on 01/24/06 12:28 
On Tue, 24 Jan 2006 09:59:22 +0100, "J.O. Aho" <user@example.net>wrote:
 
 Did the trick - thanks  :-)
 
 ><?php
 >@extract($_POST);
 >/* > $from = stripslashes($from); */
 >$from = stripslashes($from)."\r\n";
 >$to = stripslashes($to);
 >$subject = stripslashes($subject);
 >$message = stripslashes($message);
 >/* > mail('$to',$from,$subject,$message); */
 >mail($to,$subject,$message,$from);
 >header("location:process.php");
 >?>
 >
 >
 > //Aho
 [Back to original message] |