[SIZE=2]Hi,
This is my first flash project! It would be great if someone could help me please.
I have purchased a flash template which I have made some alterations to. My biggest alteration is that of adding a contact form to it.
I am comfortable with PHP, so have done the server side code in PHP. but I can’t seem to get the button on my form to trigger my code. I’ve studied many tutorials about this, but none of them are close enough to my own situation for me to make this work.
Here is the PHP code from my file called, ‘contact_process.php’:
<?php
// Send the message
$mailfrom="<$_POST[email]>";
$email="trade@snowweb.net";
$subject="RJEN website - Contact form";
Company:$_POST[company]<br><br>
$headers = "MIME-Version: 1.0
";
$headers .= "Content-type: text/html; charset=iso-8859-1
";
$headers .= "From: ". $mailfrom."
";
mail($email,$subject,$data,$headers);
echo "message_sent=ok";
?>
Here is the action script that I have in the first frame of the actions layer of my movie:
stop();
var company_var = "";
login_button.onRelease = function()
{
// Create a new LoadVars instance for the form data
var formData:LoadVars = new LoadVars();
// Initialize formData variables:
var formData.company = company_var;
formData.sendAndLoad("http://localhost:87/contact_process.php",_blank,"POST");
// Tell the user what's happening.
formData.onLoad = function()
{
if(formData.message_sent == "ok")
{
gotoAndStop(2);
}
else
{
gotoAndStop(3);
}
}
}
The action script for the button is empty. Is that right? If not, what should I put in it bearing in mind that I already have an event handler in the script above, which is in the ‘actions’ layer, frame 1.
The .fla file can be downloaded here…
http://dev50.snowweb.net/RJEN_ws_v1.0.fla
and the current .swf can be viewed here…
http://dev50.snowweb.net/RJEN_ws_v1.0.swf
The form, currently only has one field called company, I’ll add the rest once I have the methods sorted. The problem seems to be simple… the button is not triggering the function. My question is, ‘why?’.
Thanks, in advance, for your help. I really have spent days on this and never thought it could be such rocket science! I take my hat of to those of you who have mastered Flash out there!
Kind regards
Peter
[/SIZE]