|
-
php confirming sent mail to flash?
hi guys...i have a simple simple mail script that works fine. I am sending variables from Flash to php, but i would like a sort of call back from php to flash that says "ok Flash, tell the user it's all good"...then when Flash gets that, it does the desired effect. Ok, so i know the lv.sendAndLoad(url, lvGet,"GET") function, and i have another lv that is all ready to receive (lvGet.onLoad=function)...but what do i add to the php to talk back with flash??
<?php
$name=$_GET['name'];
$email=$_GET['email'];
$phone=$_GET['phone'];
$note=$_GET['note'];
$to="[email protected]";
$subject="Visitor from Me.com";
mail($to,$subject,$note);
?>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|