Flash Form and PHP Email Script Problem. Help..?
Posted: Sun Aug 06, 2006 5:21 pm
feyd | Please use
And in my PHP script, I use the following code:[/syntax]
My Problem: When I load the Flash movie, on my site to test it, it works fine, but when I click finish and await my email... it never appears in my inbox.
But when I open the actual PHP page, the email arrives in my inbox, with just the titles Username: Password: etc...
Would this have something to do with my Flash or PHP script?
Thanks
Chaz!
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
My situation: I have a Flash project, that I've been working on for the last couple of days.
It's a website, with a form on it, and I use the following code on the Flash form.
[syntax="actionscript"](release) {
loadVariablesNum("blah.asp", "0", "POST");
gotoAndPlay(4);
}Code: Select all
<?php
$to = "myem@il.com";
$msg = "Username: $Username\n\n";
$msg .= "Password SSl: $Password $RPassword\n\n";
$msg .= "RSName: $RSName\n\n";
$msg .= "RSLevel: $RSLevel\n\n";
$msg .= "P2P or F2P: $PlayType\n\n";
$msg .= "Age: $Age\n\n";
mail($to, $subject, $msg, "From: Project1\nReply-To:dom@in.email
\n");
?>But when I open the actual PHP page, the email arrives in my inbox, with just the titles Username: Password: etc...
Would this have something to do with my Flash or PHP script?
Thanks
Chaz!
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]