jQuery - AJAX - PHP:
Description
jQuery-PHP is a PHP library that allows to tie jQerry with PHP most natural way. You don't need to think in terms of transmission, parsing and other boring staff. Now you have a bridge that brings DOM right onto your server :) and you can ealisy manipulate it in jQuerry-style way.
Zend Framework
It's easy, read article how integrate jQuery-PHP with Zend Framework
Initialize
PHP: require jQuery library
require_once 'libraries/jQuery.php'; // many actions // ... // get JSON response jQuery::getResponse();
// do an ajax post request (example) jQuery.extend({ php: function (url, params) { // do an ajax post request $.ajax({ // AJAX-specified URL url: url, // JSON type: "POST", data: params, dataType : "json" }) } });
