# Flash/php form issue

**URL:** https://forum.kirupa.com/t/flash-php-form-issue/163722
**Category:** Uncategorized
**Created:** [September 25, 2005, 3:51pm UTC](https://forum.kirupa.com/t/flash-php-form-issue/163722 "2005-09-25T15:51:51Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pantas](https://avatars.discourse-cdn.com/v4/letter/p/3e96dc/32.png) [@pantas](https://forum.kirupa.com/u/pantas)
#### Post date: [September 25, 2005, 3:51pm UTC](https://forum.kirupa.com/t/flash-php-form-issue/163722/1 "2005-09-25T15:51:51Z")

</div>

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 = “[pantasss@hotmail.com](mailto:pantasss@hotmail.com)”;  
$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!🙂
