Jump to content

PHP & Actionscript flash


Animosity

Recommended Posts

Well, I'm stuck with the PHP message. I'm attempting to send eight of the vars from Actionscript to PHP. I try it by using.


$full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . '$name'. "\n\n" . '$email' . "\n\n" . '$company' . "\n\n" . '$address' . "\n\n" . '$csz' . "\n\n" . '$phone' . "\n\n" . '$fax' . "\n\n" .' $part'

So, anything else?

stop();
System.useCodepage = true;
send_btn.onRelease = function() {
my_vars = new LoadVars();
my_vars.sender = email_box.text;
my_vars.subject = subject_box.text;
my_vars.name = name_box.text;
my_vars.email = email_box.text;
my_vars.company = company_box.text;
my_vars.address = address_box.text;
my_vars.csz = csz_box.text;
my_vars.phone = phone_box.text;
my_vars.fax = fax_box.text;
my_vars.part = part_box.text;

if (my_vars.sender != "" and my_vars.subject != "" and my_vars.part != "") {
	my_vars.sendAndLoad("http://kerneng.com/flash/mailer.php", my_vars, "POST");
	gotoAndStop(2);
} else {
	error_clip.gotoAndPlay(2);
}
my_vars.onLoad = function() {
	gotoAndStop(3);
};
};
email_box.onSetFocus = subject_box.onSetFocus=part_box.onSetFocus=function () {
if (error_clip._currentframe != 1) {
	error_clip.gotoAndPlay(6);
}
};

 

 

Heres the PHP Script, i'm trying to get content from

 

<?php

/* ---------------------------
php and flash contact form. 
by www.MacromediaHelp.com
--------------------------- 
Note: most servers require that one of the emails (sender or receiver) to be an email hosted by same server, 
so make sure your email (on last line of this file) is one hosted on same server.
--------------------------- */


// read the variables form the string, (this is not needed with some servers).
$subject = $_REQUEST["subject"];
$sender = $_REQUEST["sender"];
$name = $_REQUEST["name"];
$email = $_REQUEST["email"];
$company = $_REQUEST["company"];
$address = $_REQUEST["address"];
$csz = $_REQUEST["csz"];
$phone = $_REQUEST["phone"];
$fax = $_REQUEST["fax"];
$part = $_REQUEST["part"];



// include sender IP in the message.
$full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . '$name'. "\n\n" . '$email' . "\n\n" . '$company' . "\n\n" . '$address' . "\n\n" . '$csz' . "\n\n" . '$phone' . "\n\n" . '$fax' . "\n\n" .' $part'
$message = $full_message;

// remove the backslashes that normally appears when entering " or '
$message = stripslashes($message); 
$subject = stripslashes($subject); 
$sender = stripslashes($sender); 

// add a prefix in the subject line so that you know the email was sent by online form
$subject = $subject;

// send the email, make sure you replace email@yourserver.com with your email address
if(isset($message) and isset($subject) and isset($sender)){
mail("gundamdeviL@hotmail.com", $subject, $message, "From: $sender");
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.