资 源 简 介
This platform allows you to execute querys from a database in a real synchronous mode.
Instructions:
Unzip myassyncPHP on your http root directory, example http://localhost/myassync (if you are using xampp this is the route C:xampphtdocsmyassync)
Configure your database parameters in the AJAP/Config.php file
Create a Flex Project and select the previous directory (Step 1) as the output directory (if you are using xampp this is the route C:xampphtdocsmyassync)
Unzip myassyncFLEX on your flex project
Run it!
Quick Reference:
Constructor
var objSync:SyncFW = new SyncFW(this);
Execute a php function of FlexFW.php
//it returns the same variable that php returns//objSync.execute(name of the function,parameter 1,parameter 2,...,parameter n);objSync.execute("helloWorld","Jhon");
Execute a Mysql query
//it returns the same