vote up 6 vote down star
2

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
flag

1  
Let me know what you think of xajax if you decide to use it. – Adam Lerman Sep 11 '08 at 21:30

18 Answers

vote up 3 vote down check

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

link|flag
vote up 0 vote down

http://www.yiiframework.com

link|flag
vote up 0 vote down

http://codeigniter.com/

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 4 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 2 vote down

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|flag
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
vote up 0 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
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
vote up 6 vote down

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

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

link|flag
vote up 1 vote down

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|flag
vote up 5 vote down

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

link|flag

Your Answer

Get an OpenID
or

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