php 接 flash 的值並寫入資料庫
像這樣準備把資料丟給php
然後把值給丟出去
然後php把值接到,就可以把值給寫到資料庫了。
- var sendData:URLVariables = new URLVariables();
- //要接收資料的php
- var myRequest:URLRequest = new URLRequest("update.php");
- myRequest.method=URLRequestMethod.POST;
- var phpLoader:URLLoader = new URLLoader();
- phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
然後把值給丟出去
- sendData.outputData=outputData;
- sendData.mapid=mapId;
- myRequest.data = sendData;
- myRequest.method = URLRequestMethod.POST;
- phpLoader.addEventListener(Event.COMPLETE, onSendComplete);
- phpLoader.load(myRequest);
- function onSendComplete(event:Event): void
- {
- }
然後php把值接到,就可以把值給寫到資料庫了。
- $data=$_POST['outputData'];
- $id=$_POST['mapid'];
留言