Buzzword alert! Buzzword alert! Synergisticly expedite transparent web-readiness! Buzzword alert! Buzzword alert!
Ok, now that I've got that out of the way...
Ajax is a web application development architecture that resembles more of a client-server architecture than traditional web development. In an Ajax application a client application is delivered to the browser consisting of HTML, CSS and JavaScript. The interactions of the client with the server send and receive data, data that the client then knows how to display to the user.
While Ajax has an 'X' which stands for XML in its name, Ajax really has nothing to do with XML at its core. In reality parsing XML is usually a lot more work than you need to do when you expect that a client will be a browser. Along comes JSON. JavaScript Object Notation is a structured format that corresponds to the needs of the client-side programming environment: JavaScript. JSON can be evaluated on the client into JavaScript object graphs, no parsing, no XML Sax or DOM parsing, just eval() into a JavaScript object and then call methods on it.
Ajax, as a hot technology, I was of course interested in learning more so I created a small example application that I could build and play with a bit. I thought I'd share it with everyone so they could use it as a quick-start example for trying some of these technologies.
I chose to use the DOJO Toolkit as my client-side framework because it seems to have a very broad library already built and a reasonable amount of documentation. DOJO is really engineered like a true software application. It really shows off the fact that you can write good code and good frameworks using the JavaScript language.
Show Me Some Code
Here's an example of a simple blog application that talks to a single table to display articles.showArticle.html
A very simple HTML skeleton that imports the CSS, DOJO and the Application written in JavaScript.blog.js
The Application that is delivered to the Client.getArticle() is called and initiates an asynchronous call to the getArticle.php code. When the response comes back DOJO automatically calls the showArticle() function and passes the response data to it. The showArticle() function handles formatting the data by manipulating the HTML DOM of the page.
getArticle.php
The code that lives on the server and responds to a given service request. This PHP code parses the HTTP request that the DOJO toolkit sends to the server. It parses the data from a JSON string into PHP objects, calls into the database and gets some values out. It then turns a PHP array into a JSON string to return to the web client.While this example is written in PHP, there is nothing that would prevent you from writing the server component in any language. There are JSON libraries for every language you've ever heard of (and a lot that you've never even heard of). The notation itself is fairly simple (it's about 700 lines of code in PHP), so implementing it in another language should be relatively easy as well.
Consider using implementation neutral URIs for your service calls and then using something like Apache mod-rewrite to map those URIs to the proper calls in whatever language you use to implement the server code. Doing this and you should be able to completely decouple your web client from the server components.