I have values inside an XMLList in Actionscript. Need to send these values to the DB and update it. My actionscript code is as follows:
public static function saveUserPermList():void {
var ht:HTTPService = new HTTPService();
ht.url = Config.getServerURL();
ht.method = URLRequestMethod.POST;
//ht.resultFormat = "e4x";
ht.contentType = "text/xml";
ht.request["action"] = "saveUserPermListXML";
ht.request["pdata"] = Application.application.userPermListModel.toString();
ht.addEventListener(ResultEvent.RESULT,AdminUserList.saveUserPermListResult);
ht.send();
}
public static function saveUserPermListResult(e:ResultEvent):void {
trace(e);
}
- Nasıl PHP XMLLIST veri gönderebilir? Ben buna bir toString () eklemek gerekir?
- Ayrıca ne Flex'te contentType olmalıdır.
PHP nasıl içinde bu yakalayabilirsiniz, pl bana bildirin, kullanmaya çalışıyorum, bu şekilde,
if ($ user -> isAllowedAccess ()) {
header("Content-type:text/xml");
$postedData = $_POST["pdata"];
// $xmldoc = simplexml_load_string($POST['pdata']);
// echo($xmldoc);
}
Hayır şans. Pl bana bildirin.