Im working from this fun PHP sql book while I am out for a few weeks, I am working on an alien abduction form lol its supposed to mail it to me.. here is my code for that part.. can you tell me what I am doing wrong with it?
$to = 'webdevdea@gmail.com';
$subject = 'Aliens Abducted Me - Abduction Report';
$msg = "$name was abducted $when_it_happened and was gone for $how_long.\n" .
"Number of aliens: $how_many\n";
"Alien Description: $alien_description\n";
"What they did: $what_they_did\n";
"Fang Spotted: $fang_spotted\n";
"Other Comments: $other";
mail($to, $subject, $msg, 'From:' . $email);