I am going to apologize off the bat for posting an email form question when there are sooooo many others... but honestly, i looked at them all before i wrote this.
I have a form that contains a place to type in 'name', 'subject', 'message', and 'email'. When ever the information is filled out and the send button is hit, I only receive the 'subject' and 'message' information.
Here is my code...
<?php
$subject = $_POST['subject'];
$message = $_POST['message'];
$to = "myemail@gmail.com";
$msg = "$subject\n\n";
$msg = "$message\n\n";
mail($to, $subject, $msg, "From: My web site\nReply-To: $email\n");
header("location:bio.html");
?>
What am i missing to be able to receive all the information when i hit send?
Thank you sooo much in advance.
Gab