Tag Archives: JSON

Parsing JSON String

In previous post about JSON Requests and Responses we learn how to send JSON request to our server-side scripts and return a JSON response. Now back on the client, after the server has done what it needs to do, the response is set in the responseText property of the XMLHttpRequest object. Once the readyState and [...]

Read more

JSON Requests and Responses

In the previous post about JSON, you know what JSON is and you see what JSON looks like and how it differs to XML. Now, you are about to learn how to handle JSON Requests and Responses. Before we get started you need to have Zend Framework installed and running in you local webserver in [...]

Read more

Getting started with JSON

In a past few weeks, most of my projects handled involved XML manipulation and AJAX. And because of that I found an alternative to the XML which is more lightweight and can be easily used together with your DOM. Its JSON. JSON is a data exchange format that is a subset of the object literal [...]

Read more