# Simple form problems sending as well

**URL:** https://forum.kirupa.com/t/simple-form-problems-sending-as-well/261452
**Category:** flash
**Created:** [May 27, 2008, 7:36pm UTC](https://forum.kirupa.com/t/simple-form-problems-sending-as-well/261452 "2008-05-27T19:36:05Z")
**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: [May 27, 2008, 7:36pm UTC](https://forum.kirupa.com/t/simple-form-problems-sending-as-well/261452/1 "2008-05-27T19:36:05Z")

</div>

I have used that simple form for a while now and it worked beautifully. Recently I noticed it stopped working and i’m not sure why. I’ve been struggling to get it to work again for days now with no luck. My host is goDaddy and [Mister.net](http://Mister.net). I use this on the submit button in the flash file.

on (release) {

```
_parent.loadVariables("http://www.mywebsite.com/email.php","POST");

```

}  
onClipEvent(data){  
\_parent.gotoAndStop(2);  
}  
on (rollOver) {  
this.gotoAndPlay(“s1”);  
}

as for the php file i use the following

\<?php  
$sendTo = "myemail@email.com";  
$subject = “[MyWebsite.com](http://MyWebsite.com) has sent you something”;

$headers .= "Reply-To: " . $\_POST[“text2”] . "  
";  
$message .= "  
\<From: " . $\_POST[“text2”] . "\>  
";  
$message .= "Name: " . $\_POST[“text1”] . "  
";  
$message .= "Phone: " . $\_POST[“text3”] . "  
";  
$message .= "Message: " . $\_POST[“text4”] . "  
";  
mail($sendTo, $subject, $message, $headers);  
?\>

I’m at a loss at what else to do. I don’t get any emails at all when the submit button is pressed in fact when i added the  
onClipEvent(data){  
\_parent.gotoAndStop(2);  
}

The movie doesn’t even move to the next frame. Any ideas what i’m doing wrong?

Jammy
