Skip navigation

Sign up | Lost password? | Help

Hello World

Practical programming... and stuff...

Posts tagged with "Ajax"

Handling Ajax requests in the Zend Framework

,

Doing Ajax is quite simple these days with the various JavaScript libraries offering easy ways to do it. But how do you do it on the server side, without complicating things too much?

Typically, in addition to the Ajax response, you need a traditional page response to a request as well - for example, for browsers which don't support Ajax.

Let's look at some methods how one can detect if a request is an Ajax request and how to respond to them in the Zend Framework.

Read more...