CrashBetaRev2
Programmer
in my sendmail i have the following
<?php
$email=$_POST['email']; //who we are sending to
$subject=$_POST['subject']; //the subject of the mail
$message=$_POST['message']; //the body of the mail
mail($email,$subject,$message); //php's mail function, with its 3 parameters
echo "Mail sent" ; //lets us know the mail was sent
?>
what if i have alot more fields that i want to be emailed
how do i include lets say 5 more Fields into the Message
section???
<?php
$email=$_POST['email']; //who we are sending to
$subject=$_POST['subject']; //the subject of the mail
$message=$_POST['message']; //the body of the mail
mail($email,$subject,$message); //php's mail function, with its 3 parameters
echo "Mail sent" ; //lets us know the mail was sent
?>
what if i have alot more fields that i want to be emailed
how do i include lets say 5 more Fields into the Message
section???