> So my question is: Is there anything currently in cakePHP that helps > to deal with this issue? For example, is there some sort of helper > that can quickly generate POST button to quickly make links in this > manor... if not how would I propose it be added to cakePHP?
Cake handles the other half of the problem (the hardest part) that is to require post for modifying data thought the Security component: http://book.cakephp.org/edit/175/security-component http://api.cakephp.org/class_security_component.html I'm not aware of any core helper that let you create forms for this case specifically but this is pretty simple to do in a custom helper. You can put an enhancement ticket for this but I think the enhancements are closed for the 1.2 release. Regards, - Dardo Sordi. PS: I think that the "GET problem" is called "request forgery". --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" 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 -~----------~----~----~----~------~----~------~--~---
