[flexcoders] Flex and PHP Issue. Please help!!!

2008-02-26 Thread Omar Fouad
In my flex application i have a form with some text fields. When I submit the form an HTTPService.send() methid is called. mx:HTTPService id=PostUser method=GET url=http://localhost/Flex/Pastarino/PostUsers.php; useProxy=false showBusyCursor=true resultFormat=text

Re: [flexcoders] Flex and PHP Issue. Please help!!!

2008-02-26 Thread Ben Marchbanks
Why not submit as a regular POST ? ---snippet- var params:Object = new Object() params.UserName = PostUserNameTF.text PostUser.send(params). --Then handle the POST in PHP.--- foreach($_POST AS $key = $values) {