Sajax
|
Sajax is an open source tool to make programming websites using the Ajax framework G?‡?¶ also known as XMLHTTPRequest or remote scripting G?‡?¶ as easy as possible. Sajax makes it easy to call PHP, Perl or Python functions from your webpages via JavaScript without performing a browser refresh. The toolkit does 99% of the work for you so you have no excuse to not use it.
Read The Full Review.
|
Contributions
 |
FeaturesEdit
No input file specified.
SamplesEdit
<? require("Sajax.php"); sajax_init(); sajax_export("multiply"); sajax_handle_client_request(); function multiply($a=0,$b=0) { return $a * $b; } ?> <html> <head> <title>Sajax Multiply Example</title> <script> <? sajax_show_javascript(); ?> function multiply_cb(result) { document.getElementById('z').value = result; } function getElem(id) { return document.getElementById(id); } </script> </head>
<body> <input type="text" id="a" value="1" size="4" /> x <input type="text" id="b" value="1" size="4" /> <button onclick="x_multiply(getElem('a').value,getElem('b').value,multiply_cb);">=</button> <input type="text" readonly id="z" value="" size="6" /> </body> </html>
Related LinksEdit
CompetitorsEdit
|
Related Projects 
|
- Zephyr
is an MVC (model-view-controller) framework and supports complete separation of business logic layer from presentation layer. It is built using popular and tested libraries in backend - AjaxCore
AjaxCore is a multi-purpose PHP framework that ease the development of rich AJAX ( Asynchronous JavaScript And XML ) applications, by generating the appropriate JavaScript code. AjaxCore takes all the dirty work of JavaScript code generation and provides a solid foundation. The concept is to extend a Generic AjaxCore class and defining methods that handle the AJAX driven events and binding them to HTML objects. It uses Prototype's JavaScript standard library for getting DOM (Document Object Model ) elements and handling asynchronous XMLHttpRequest One distinguish point to remark is that, by letting you Bind events on HTML objects that will execute server side code,it let's you solve any specific requirement without the hassle of coding particular JavaScript code to handle specific events. - QuTags - PHP Style AJAX
PHP & C Module that is AJAX for PHP, with no JAX. You don't even have to know what AJAX or JavaScript is about. QuTags requires no knowledge of JS/XML or AJAX; just PHP is enough. Simply, QuTags maximize application performance and minimize development time. - HTS Web Application Framework
The HTS Web Application Framework is a PHP and Javascript based framework designed to make simple web applications easy to design and implement. The framework implements a custom tag engine with an automated Javascript and/or PHP Event Model and automates the transfer - Prado
PRADOTM is a component-based and event-driven programming framework for developing Web applications in PHP 5. - My-BIC
This is a basic state of mind system rather than a framework
Allows you to focus on making things happen rather than setting things up
Support for XML, JSON and TEXT ajax transactions
Supports EasyForms for one line form processing
Supports network Down handling if the server goes down
Simple, Fast, easy to use
Client side JSON encoding support
|
Discussion

|
|
|
|
|