|
Posted by techjohnny@gmail.com on 06/06/07 19:57
Hello Group:
I'd like to only send input to an e-mail from a form.
User enters information in to text box called Room, but nothing in
Room2. Currently, message is sent like this is user leaves Room2
empty:
Room: Bedroom
Room2:
BEGIN----------------------------------------------------------------------------------------------------------------------------
$message = "
Room: ".$Room."
Room2: ".$Room2."
";
$message = stripslashes($message);
mail("demo@demo.com","Form Submitted at your website",$message,"From:
Form");
END----------------------------------------------------------------------------------------------------------------------------
Thanks,
--JP
Navigation:
[Reply to this message]
|