Below is a class that I made that can be used to send a group of variables to a php script on a server and receive the results. I use this all the time in many of my projects!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| // FlashPHP Class by Rick Nuthman
// 8.28.09
// Constructor receives 2 arguments:
// url:String - The url to the PHP file
// flashVars:Object - An object that contains variables to be sent to the url
//
// The class dispatches 1 event called "ready" once the php transaction is complete.<a href='http://www.as3blog.org/wp-content/uploads/2010/02/FlashPHP_example.zip'>FlashPHP_example</a>
// listen for this event. Once it's received you can access returned variabled from receievedVars.
package com.frigidfish{
import flash.net.URLVariables;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.net.URLLoaderDataFormat;
import flash.net.URLRequestMethod;
import flash.events.EventDispatcher;
import flash.events.Event;
public class FlashPHP extends EventDispatcher {
// Public Properties
public var receivedVars:URLVariables;
// Private Properties
private var url:String;
private var flashVars:Object;
private var request:URLRequest;
private var completeEvent:Event = new Event("ready");
private var variables:URLVariables = new URLVariables();
private var loader:URLLoader = new URLLoader();
public function FlashPHP(url:String, flashVars:Object) {
this.flashVars = flashVars;
this.url = url+"?r="+ new Date().getTime();
parseVariables();
}
// Private Methods
private function parseVariables() {
for (var item in flashVars) {
variables[item] = flashVars[item];
}
sendVariables();
}
private function sendVariables() {
request = new URLRequest(url);
request.method = URLRequestMethod.POST;
request.data = variables;
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener(Event.COMPLETE, variablesAreLoaded);
loader.load(request);
}
function variablesAreLoaded(event:Event) {
receivedVars = new URLVariables(loader.data);
dispatchEvent(completeEvent);
}
}
} |
Here is an example of how to implement it:
This is a preview of
Send/Receive Variables from Actionscript 3 & PHP
.
Read the full post (200 words, estimated 48 secs reading time)