I know jack shit about php so I'm having a helluva time making this simple form mail php script add the
$name $email $address & the
$message into the email's body. As it is, it only adds the
$message. What am I doing wrong?
< ?
$email = $_REQUEST['email'] ;
$name = $_REQUEST['name'] ;
$phone = $_REQUEST['phone'] ;
$address = $_REQUEST['address'] ;
$message = $_REQUEST['message'] ;
mail( "
[email protected]", "New Cleaning Order!",
$message, "From: $email" );
header( "Location: http://www.mywebsite.com/thankyou.htm" );
? >