.
Flex与php: 先把两个代码贴一下: Flex:
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="onInit()" xmlns="*" layout="absolute" backgroundGradientColors="[#ffffff, #c0c0c0]"> <mx:Script> <![CDATA[ public function onInit():void { userRequest.send(); } ]]> </mx:Script> <mx:HTTPService id="userRequest" url="request.php" useProxy="false" method="POST"> <mx:request xmlns=""> <username>{username.text}</username><emailaddress>{emailaddress.text}</emailaddress> </mx:request> </mx:HTTPService> <mx:Form x="22" y="10" width="356"> <mx:HBox> <mx:Label text="Username"/> <mx:TextInput&nbs |