Flash/php form issue

man…i’m starting to get really pissed of with this.
2days loking at this and still dont know whats wrong…
i’ve got a regiser area, wich is a movie clip inside a mask, so i can scroll it up and down…could that be it?

the flash version is fine i think (on clip event it goes to next frame)
…so does anuone find any errors in this code?

<?php

$sendTo = “[email protected]”;
$subject = “Contacto através do site Hidrogeologia”;
$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];

$message = "Name: “.$_POST[‘name’].”
Surname: “.$_POST[‘surname’].”
Title: “.$_POST[‘title’].”
Position: “.$_POST[‘position’].”
Company: “.$_POST[‘company’].”
Adress: “.$_POST[‘adress’].”
City: “.$_POST[‘city’].”
Country: “.$_POST[‘country’].”
Zip-Code: “.$_POST[‘zip’].”
Phone: “.$_POST[‘phone’].”
Mobile Phone: “.$_POST[‘mobile’].”
Fax: “.$_POST[‘fax’].”
Email: “.$_POST[‘email’].”
Provisory Title: “.$_POST[‘provisory’].”
Date: ".$_POST[‘date’];

mail($sendTo, $subject, $message, $headers);
?>

thanks in advance guys!:slight_smile: