Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

EasyPHPWebsites.com:
Gluing jQuery and PHP Together with JSON
Jun 24, 2009 @ 15:28:22

The EasyPHPWebsites site has posted the next tutorial in their series looking at combining PHP and Ajax to make more powerful applications. In this new article they look at the combination of PHP and jQuery as connected by JSON messages.

The ability to create powerful Web interfaces using AJAX is accomplished thanks to the marrying of a server-side language such as PHP and the client-side JavaScript language. But how is data passed between a script executing on the server and another executing within the user's browser, all without going through the usual request-response process which requires the page to reload?

The jQuery/JSON "glue" is one alternative and the option he explores. He briefly introduces JSON and its format before getting into the jQuery use of it or the PHP code behind it. Thankfully, PHP has a handy function to make things easier for the developer - the json_encode and json_decode functions.

tagged: tutorial json jquery

Link:


Trending Topics: