# Weird response through flash feedback form

**URL:** https://forum.kirupa.com/t/weird-response-through-flash-feedback-form/220267
**Category:** flash
**Created:** [March 24, 2007, 1:33pm UTC](https://forum.kirupa.com/t/weird-response-through-flash-feedback-form/220267 "2007-03-24T13:33:44Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sisterjameela](https://avatars.discourse-cdn.com/v4/letter/s/e79b87/32.png) [@sisterjameela](https://forum.kirupa.com/u/sisterjameela)
#### Post date: [March 24, 2007, 1:33pm UTC](https://forum.kirupa.com/t/weird-response-through-flash-feedback-form/220267/1 "2007-03-24T13:33:44Z")

</div>

I recently made a flash movie with 2 feedback forms in it. One form works perfectly but the other much larger one comes back like html code. I don’t know what i’m doing wrong. Here is what i use in the movie clip  
on (release) {  
this.loadVariables(“contact.php”, “POST”);  
}

this is the php code that i used  
\<?php  
$sendTo = "myemail@gmail.com";  
$subject = “Booking from [Mysite.com](http://Mysite.com)”;

$headers .= "Reply-To: " . $\_POST[“text13”] . "  
";  
$message .= "  
From: " . $\_POST[“text13”] . "  
";  
$message .= "First Name: " . $\_POST[“text6”] . "  
";  
$message .= "Last Name: " . $\_POST[“text7”] . "  
";  
$message .= "Address: " . $\_POST[“text8”] . "  
";  
$message .= "City: " . $\_POST[“text9”] . "  
";  
$message .= "State: " . $\_POST[“text10”] . "  
";  
$message .= "Zip: " . $\_POST[“text11”] . "  
";  
$message .= "Phone: " . $\_POST[“text12”] . "  
";  
$message .= "Email: " . $\_POST[“text13”] . "  
";  
$message .= "Pickup Address: " . $\_POST[“text14”] . "  
";  
$message .= "Destination Address: " . $\_POST[“text15”] . "  
";  
$message .= "Limousine Desired: " . $\_POST[“text19”] . "  
";  
$message .= "Time of Pickup: " . $\_POST[“text16”] . "  
";  
$message .= "Number of hours: " . $\_POST[“text17”] . "  
";  
$message .= "Date Desired: " . $\_POST[“text18”] . "  
";

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

It’s coming out like this.in the emails.

From: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>gyj\</FONT\>\</P\>\</TEXTFORMAT\>  
First Name: First Name  
Last Name: Last Name  
Address: Address  
City: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>456\</FONT\>\</P\>\</TEXTFORMAT\>  
State: State  
Zip: Zip  
Phone: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>45\</FONT\>\</P\>\</TEXTFORMAT\>  
Email: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>gyj\</FONT\>\</P\>\</TEXTFORMAT\>  
Pickup Address: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>23\</FONT\>\</P\>\</TEXTFORMAT\>  
Destination Address: \<TEXTFORMAT LEADING=“2”\>\<P ALIGN=“LEFT”\>\<FONT FACE=“Tahoma” SIZE=“13” COLOR="#CCCCCC" LETTERSPACING=“0” KERNING=“0”\>ghjm\</FONT\>\</P\>\</TEXTFORMAT\>  
Limousine Desired: \<p align=“left”\>\</p\>  
Time of Pickup: \<p align=“left”\>\</p\>  
Number of hours: \<p align=“left”\>\<font face=“Tahoma” size=“13” color="#cccccc" letterSpacing="-0.400000" kerning=“0”\>4 hours\</font\>\</p\>  
Date Desired: \<p align=“left”\>\</p\>

the information is in all that code. How can i fix it so it doesn’t return the coding with the information?
