I need a way for flash to transfer form variables to a php process page, and for the php to send a reply back to flash, so flash will display a confirmation of transmittion.
This is something I found that worked with another flash form but its in ASP.
The ASP coding sends reply_verify back to flash
<%
Dim reply_verify, returnToFlash
reply_verify = Request.Form(“i_name”)
returnToFlash = “reply_verify=”; & Server.URLEncode(reply_verify)
Response.Write returnToFlash
%>
This is the PHP that I thought would do it, but I guess I’m doing something wrong.
//Confirmation Sent Back To Form
"reply_verify" = "i_name";
$sendStr .= rawurlencode(reply_verify);
echo $sendStr;
Any help would be greatly appreciated
zip (php and fla)
html
swf