XAJAX
Xajax (www.xajaxproject.org) is a server AJAX framework for PHP Hypertext Preprocessor
web applications. It supports applications written in the 4.3.x and 5 branches of PHP,
as well as the Apache and IIS platforms. Xajax functions in the way of a typical server
framework by acting as a middleware object between the client and code on the server.
When the client wants to call a method on the server, JavaScript in the client sends the call
up to the Xajax object, which then passes the call on to the PHP methods on the server.
When the PHP method returns data, the Xajax object then passes the data back down in
XML format to the JavaScript on the client and gets displayed in the user??™s browser.
Installation Procedures
The following steps are taken by the developer to install Xajax:
1. Ensure that the web application is using either the 4.3.x or 5 branch of PHP.
2. Download the latest version of the Xajax framework from http://prdownloads
.sourceforge.net/xajax/.
3. Edit the application to include the functionality of the Xajax framework. First,
include the core Xajax library, xajax.inc.php.
4. Instantiate the master Xajax object by creating a new Xajax object.
Pages:
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332