Well, regardless of what you're doing, Symfony requires you to write
more code than Cake, so that automatically makes it less suited, with
or without Ajax.  Also, Cake has a lot of built-in features that allow
you to serve both Ajax and non-Ajax requests from the same controller
and view code.

Also, the intuitive helper syntax enables you to upgrade a non-Ajax app
fairly simply.  Compare:

$html->link("Add a post", "/posts/add");
- to -
$ajax->link("Add a post", "/posts/add", array('update' =>
'newPostDiv'));

If you wanted to add an effect:
$ajax->link("Add a post", "/posts/add", array('update' => 'newPostDiv',
'complete' => "Effect.SlideDown('newPostDiv')"));


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Cake PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to