textureman56 0 Newbie Poster

I need help the script that i am using sends formating information in the name and email forms. The script is from:
http://www.kirupa.com/developer/actionscript/flash_php_email.htm
if that helps?

this is the script i am using Im a complete php noob and I need you help, any help would be greatly appreciated.


<?php
$sendTo = "senocular@hotmail.com";
$subject = "My Flash site reply";

$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-Path: " . $_POST["email"];
$message = $_POST["message"];


(also I was wondering if any of you would reccomend greak intro books on PHP)