开发者

Importing Variables from PHP 4 into Flash

I'm trying to get variable importing from a PHP script before I implement it into a larger project. So far all I've gotten is headaches.

// this is all thats in test.php other than the open and close brackets.
// Normally I'd have it doing a mysql_query and putting useful information into the print statement.
print( "lamegame.net/test/test.php?val=foo&id=0000&name=Glenn");

All test.as has to do is access the three variables. The problem comes in that 'val' is undefined. The id and name variables however are just fine and return 0000 and Glenn respectively.

package {

    import flash.display.MovieClip;
    import flash.text.TextField;
    import flash.events.*;
    import flash.net.*;

    public class test extends MovieClip
    {
        public function test() 
        {
            super();
            //prep request
            //EDIT: sorry, I realize now it makes a bit of difference between test.php by itself and http://.../test.php.
            var request:URLRequest = new URLRequest("http://somewebsite.com/test.php");
            request.method = URLRequestMethod.GET;

            var loader:URLLoader = new URLLoader();

            //load request
       开发者_Go百科     loader.dataFormat = URLLoaderDataFormat.VARIABLES;
            loader.addEventListener(Event.COMPLETE, dataLoaded);
            loader.load(request);
        }

        public function dataLoaded(e:Event):void
        {
            var name = e.target.data.name;
            var id = e.target.data.id;
            var val = e.target.data.val;
            trace("Val: " + val + "ID: " + id + " Name: " + name);
        }
    }
}


its mysterious to me how you can use a php parser in your flash ide. use a http:// link in your URLRequest. why dont you just use xml that gets build dynamically by php. its so much more readable. or you use swfobject and flash vars. then you just need to insert them in the javascript string.


call me crazy but wouldnt it be much simpler just to have the php file spit out an xml feed for your swf to consume? xml is native in as3 you dont even have to parse it, just load it and youre good to go.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜