Contact form

okay – i was able to get the contact form to work
but…

when i receive the email it doesnt show the persons infomation
where did i go wrong?

here is the AS code i used on the submit button:

on (release) {
	loadVariablesNum("form.php", 0, "POST");
	gotoAndStop(2);
}

and here is the PHP scripting that i used:

<?

   $sendTo = "info@energycraftinc.com";
   $subject = "Spray Foam Insulation";
   
   $msg = "Name:     $name

";
   $msg .= "Email:     $email

";
   $msg .= "Address:     $address

";
   $msg .= "Phone:	$phone

";
   $msg .= "Mobile:	$mobile

";
   $msg .= "Message:     $message

";

  mail($sendTo, $subject, $msg, "From: 4sg
Reply-To: $email
");

?> 

once i fill out the form and i receive the email this is all that is get:


Name:
Email:
Address:
Phone:
Mobile:
Message:

it doesnt display the users information

can someone help me out?

thanks