PDA

View Full Version : What's easiest way: Flash Order Form Vars->PHP->email?


The Waiter
11-17-2006, 02:26 AM
This is driving me nuts (as I am novice)
I want to use the components to create a questionare ie checkboxes, listboxes etc
I want to be able to hit 'submit' & send info via PHP and have it arrive as an email WITHOUT using mysql or coldfusion - no databases!!

I have created a simple contact form that works but can't find any info on a straightforward way to use variables and translate them into a basic message using PHP.
Surely there must be a way?

Heeellpp meeee! ;-/

The Waiter
11-17-2006, 02:32 AM
This is driving me nuts (as I am novice)
I want to use the components to create a questionare ie checkboxes, listboxes etc
I want to be able to hit 'submit' & send info/variables via PHP and have it arrive as an email WITHOUT using mysql or coldfusion - no databases!!

I have created a simple contact form that works but can't find any info on a straightforward way to use variables and translate them into a basic message using PHP.
Surely there must be a way?

Heeellpp meeee! ;-/

Cota
11-17-2006, 03:09 AM
http://actionscript.org/forums/showpost.php3?p=421960&postcount=70
Sendmail.zip

The Waiter
11-17-2006, 03:50 AM
Sorry to be a pain - but could you explain how the php script knows where to send all my info?
It just doesn't seem like the php has enough info in it - ;-/

Cota
11-17-2006, 04:29 AM
The email address to send it to is in the PHP file.

$to = your@email.address //inset the email address it goes to here
$subject = $_POST['subject_txt'];
$message = $_POST['message_txt'];