PDA

View Full Version : Flash radio button help.


darkstyle
04-02-2008, 03:33 PM
Hi friends,
I have never deal with radio button in flash, i have a form with 3 input filed and 3 radio button. Once the user press the submit button , using PHP script the information should be submitted to email,

I have attached the form.

Does any one has this kind of script?? or friend can you help on scripting this?? please help.

Regards
Sam

bowljoman
04-07-2008, 05:47 AM
private function registerIp():void
{
var url:URLRequest = new URLRequest("keygen.php");
var uv:URLVariables = new URLVariables();
url.method = "POST";

uv.server_ip = this.idIP.text;

url.data = uv;
navigateToURL(url,"_self");
}



then in your keygen.php

you will use

$_POST['server_ip']

to read the value