# Flash-based email Form using php HELP

**URL:** https://forum.kirupa.com/t/flash-based-email-form-using-php-help/214328
**Category:** flash
**Created:** [January 27, 2007, 5:24pm UTC](https://forum.kirupa.com/t/flash-based-email-form-using-php-help/214328 "2007-01-27T17:24:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![troyt](https://avatars.discourse-cdn.com/v4/letter/t/c37758/32.png) [@troyt](https://forum.kirupa.com/u/troyt)
#### Post date: [January 27, 2007, 5:24pm UTC](https://forum.kirupa.com/t/flash-based-email-form-using-php-help/214328/1 "2007-01-27T17:24:00Z")

</div>

All I want to do is add a ‘telephone’ text input on the form. But I can’t figure out how. It all works fine but when I try to add this to the php it doesn’t work. Surely I just add another line into the php code?? How can it be so difficult?  
I’ve seen this addressed before but without a real solution. Anybody?

\<?php  
$sendTo = “[email@address.com](mailto:email@address.com)”;  
$subject = “Feedback form”;  
$headers = “From: " . $\_POST[“name”] .”\<" . $\_POST[“email”] ."\>  
";  
$headers .= "Reply-To: " . $\_POST[“email”] . "  
";  
$headers .= "Return-path: " . $\_POST[“email”];  
$message = $\_POST[“message”];  
mail($sendTo, $subject, $message, $headers);  
?\>
