up vote 18 down vote favorite
9
share [g+] share [fb]

Question

I'm fairly familiar with many of the PHP frameworks out there, but I'm wondering which ones actually integrate AJAX functionality and which ones do it well? Ideally I'd love to find a framework that would allow me to avoid JavaScript alltogether (at least for typical/basic JavaScript functionality).

Does such a thing exist? If not, does anything come close?

Answers/Research

So far, here's what I've found. This includes info from the responses as well as outside research.

PHP Frameworks PHP Libraries
link|improve this question

1  
Let me know what you think of xajax if you decide to use it. – Adam Lerman Sep 11 '08 at 21:30
Agile Toolkit has a powerful abstraction of AJAX: agiletoolkit.org/intro/javascript – romaninsh Nov 2 '11 at 0:49
feedback

closed as not constructive by Kev Sep 10 '11 at 23:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by Justin Ethier Sep 4 '11 at 20:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

24 Answers

up vote 4 down vote accepted

Check out XAJAX. No JavaScript required. Takes a few hours to get figured out but works really well.

link|improve this answer
the link should be: xajax-project.org – Bernd Ott Nov 2 '10 at 10:25
feedback

Symfony is a pretty awesome framework for PHP; with easy ajax! ;)

http://www.symfony-project.org/

link|improve this answer
feedback

Zend Framework is awesome and really does speed up production. I am leading a team of PHP developers for an ecommerce company now, and it is what we are using to build out the back end tools. We use tons of the built in AJAX functionality, and it comes Dojo friendly right out of the box, but has methods to integrate the other popular JavaScript frameworks.

It's worth a serious look.

link|improve this answer
feedback

I haven't used it recently, but I believe the Zend Framework contains the Dojo Tookkit library, or at least integrations for it.

link|improve this answer
feedback

It's a nice and novel idea to have a PHP framework that supports AJAX out of the box. However, there are times that you need to modify the AJAX code or troubleshoot the javascript generated by the framework. So at the end of the day, you still can't avoid javascript.

Hence, maybe it's better that you pick your favorite PHP framework and take javascript framerwork that suits you. JQueary is a robust and light-weight framework that you can try.

link|improve this answer
I definitely agree, I don't think it would be realistic to expect a perfect solution. It would be nice, however, to have at least some basic functionality covered simply to speed up the development process (after all, that's what frameworks are for in the first place). – Wilco Sep 15 '08 at 1:51
feedback

I think CakePHP has AJAX support. It's a really nice MVC framework.

link|improve this answer
it definitely has ajax support. There is a way to drop in one file to your vendors folder and it starts doing everything you would expect in ajax. It's pretty sweet. – icco Sep 11 '08 at 21:52
feedback

Tigermouse framework was developed with Ajax in mind. It relies heavily on Ajax calls. The thing is... it is not in active development right now. I stopped developing it because of lack of interest. The code is still available, you can use it if you wish.

No Javascript coding is required. All UI elements are defined much like in SWT or QT or GTK# and events are handled by listeners. See example applications here.

link|improve this answer
feedback

symfony provides helpers for javascript/ajax. A single php function will generally be enough to add the functionality required. Currently Prototype/Scriptaculous is the default/documented javascript framework for symfony, although jQuery is available as a plugin instead if required.

Version 1.2 of symfony may decouple Prototype more, allowing an open choice of javascript framework.

To write even less javascript, you could also try the Unobtrusive JavaScript plugin (which uses jQuery)

link|improve this answer
feedback

Nothing springs to mind, but you might look (a little less specifically) for a php library that abstracts JS calls to PHP (which would generate the JS for you in your templates). Such a library could be used in conjunction with your framework of choice, if you like.

link|improve this answer
feedback

I use cakephp with jquery. Cake does have some ajax support but it's nothing compared to what jquery has to offer. Cake is a very powerful framework the only downside is that their documentation can be limited at times, which results in having to dig through the code to figure out how something works.

link|improve this answer
feedback

There is also Akelos, it's a Rails clone, and it has Ajax support in a same way Rails would.

link|improve this answer
feedback

I just ran across Stratos, another PHP framework that has AJAX functionality built in. Has anyone used/heard of this before?

link|improve this answer
feedback

Code igniter the best framework - you can easily include some ajax libraries like Jquery, and Prototype or you can build your own ajax libraries

link|improve this answer
feedback

For the last twelve months, I’ve been developing NOLOH PHP/Ajax applications with all the client-side effects, automated state-management, XHR etc. without writing a single line of Javascript.

Head over to http://www.noloh.com/ and take a look for yourself.

Thank You

link|improve this answer
feedback

I would recommend my own framework, PHP On Pie, which takes a uniquely PHP-like approach to things:

http://phponpie.com

One of its features is that when you make a request via AJAX, you can also ask for a bunch of "slots" to be filled in the response. These slots may contain HTML to be inserted, or some result. It also automatically takes care of timestamps in both directions, so you can ignore responses that were sent later than the latest one you processed. (You can also do the same for requests, but it would require you to keep a session on the server.)

Regarding AJAX, it basically lets you use any library out there (e.g. jQuery) to do the actual AJAX requests and receive a response. Just check out the Pop.ajaxExtend function.

link|improve this answer
feedback

In all honesty I haven't found a better PHP framework than Codeigniter. So I would say Codeigniter and my reasons are quite simple.

Easily customisable and least like a framework.

Comes with Javascript drivers that you can use to perform AJAX requests and other JavaScript goodness.

MojoMotor (a lightweight CMS) by the creators of Codeigniter (EllisLab) is a standard Codeigniter 2.0 application uses AJAX and JavaScript quite heavily.

Codeigniter is a loosely coupled CMS and you really only have to load what you want to use. Zend is great for doing AJAX / JavaScript type stuff too, but I find Zend is overly complex for 98% of all web application needs. I use it at work and quite honestly hate it.

link|improve this answer
feedback

The Yii framework might be worth checking out. It's a PHP framework that uses jQuery out of the box. This won't hide all the javascript from you, but it simplifies your javascript life a lot and unifies the user community behind a single javascript library.

link|improve this answer
feedback

Sajax is the simplest, and so easiest to grok, I've seen.

link|improve this answer
They have a new version and a new site: sajax.info , and there is a derivate s2ajax: nexus.zteo.com/projects/s2ajax developed by Chris Revenscroft. – Radu Mariș Mar 1 '11 at 15:08
feedback

why no go to php frameworks,and have a look the compare list.

link|improve this answer
feedback

xajax is by far the best solution for what you're looking for (avoiding javascript) you can directly start using 0.5 rc2 (going final soon) - it's great, i'm using it in several production environments since 0.5 beta 2 and it works great

link|improve this answer
feedback

http://codeigniter.com/

link|improve this answer
feedback

Check Prado out: http://www.pradosoft.com/

link|improve this answer
feedback

Symfony with sfJqueryReloaded Plugin is very Easy , but doesnt have enough Widgets like Grid , ColorPicker etc etc. You dont have Simple Form Vaidation :) You can ofcourse integrate 3rd Party jQuery Plugins.

For One Stop Solution , Use ZendFramework with Zend_Dojo DOJO Helper. DOJO has all the Widgets in One Pack so you dont have to search for Validatin,Grdi,ColorPicker,Charts Plugins

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.