Uhum yes, so its just my mistakes..

but i dont know the mistake..

I just want to send some variables to php file but by navigatetoURL
how to do that?.. before this its worked, but now i try to run again it didnt worked

I have 2 ways to do that but both of those didnt worked

var hinoVar:URLVariables = new URLVariables();
hinoVar._table = fromDG;
var hinoRequest:URLRequest = new URLRequest("http://localhost/FlashExcel.php");
hinoRequest.method = URLRequestMethod.POST;
hinoRequest.data = hinoVar;
navigateToURL(hinoRequest,"_self");
var hinoLoad:URLLoader = new URLLoader();
hinoLoad.dataFormat = URLLoaderDataFormat.VARIABLES;
hinoLoad.load(hinoRequest);
hinoLoad.addEventListener(Event.COMPLETE,xlsdone);
And
var hinoVar:URLVariables = new URLVariables();
hinoVar._table = fromDG;
var hinoRequest:URLRequest = new URLRequest("http://localhost/NetBeansPHPHino/FullFlashPHPBackgroundTest/FlashExcel.php");
hinoRequest.method = URLRequestMethod.POST;
hinoRequest.data = hinoVar;
var hinoLoad:URLLoader = new URLLoader();
hinoLoad.dataFormat = URLLoaderDataFormat.VARIABLES;
hinoLoad.load(hinoRequest);
hinoLoad.addEventListener(Event.COMPLETE,xlsdone);
}
private function xlsdone(event:Event):void
{
var _xlsText:String = event.target.data.valid;
navigateToURL(new URLRequest("http://localhost/NetBeansPHPHino/FullFlashPHPBackgroundTest/FlashExcel.php"),"_self");
I just want to send some variables to php by navigateToURL.. but it seems didnt send and change to zero / null..
Thank you very much Ronald and Jorge
