I don’t want the browser window to refresh… I just want Flash to hand off the data and email the contents.
The Flash file moves forward to a Thanks screen.
Everything works except the php is making the screen go blank after submitting.
This is the simple php I’m using:
<?php
$body = "These comments were sent via the website
Name is $fullName
Home Phone is $phone
Email is $email
Prefer Contact by: $radioGroup";
mail("myaddress@company.com", "LTA Site Send", $body, "From:The LTA Site");
?>