Re: How can I send parameters via get to index with cool url

2007-09-06 Thread alanclic
Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more optio

Re: How can I send parameters via get to index with cool url

2007-09-06 Thread Pablo Viojo
Also, try Named Parameters (native in 1.2, for 1.1 [1]) [1] http://bakery.cakephp.org/articles/view/passing-named-parameters -- Pablo Viojo [EMAIL PROTECTED] http://pviojo.net On 9/6/07, majna <[EMAIL PROTECTED]> wrote: > > You can map all route site/* to site/index/ > exmpl for 1.1.x $Route-

Re: How can I send parameters via get to index with cool url

2007-09-06 Thread majna
You can map all route site/* to site/index/ exmpl for 1.1.x $Route->connect('/site/*', array('controller' => 'site', 'action' => 'index')); but all others must be maped before this (index) one : site/view/* site/view site/add/* site/add On Sep 6, 7:45 am, alanclic <[EMAIL PROTECTED]> wrote: > H

How can I send parameters via get to index with cool url

2007-09-06 Thread alanclic
How can I send a parameter to an index page not using this: site/index/ parameter; I want to know if it's possible to send it like this: /site/ parameter ?? Thank you! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group