Interaction between the browser and the PHP Web applications without page reloading requires communication between both ends using Javascript on the browser side and PHP the server side.
Usually it is necessary the use of special AJAX libraries that take care of all the aspects of the communication.
This class can make the AJAX based interaction more transparent. It generates Javascript classes that act as client side proxies to call objects of PHP classes on the server side.
This way Javascript code can call classes that trigger the execution of PHP class functions with a minimal development effort.
This package can be use to generate Javascript to call functions of PHP class objects from the client side.
It generates Javascript code to create Javascript objects on the client side that act as proxies of PHP objects on the server side.
The generated code uses AJAX to communicate with the server side script that defines the ACE class.
The class can create the PHP object on the server side and call the functions that were invoked on the client side using the generated Javascript proxy class.