Tuesday, October 28, 2008

Re: how can i set one controller to render actions from another controller in cakephp 1.2

Passing parameters via URL:
/<controller_name>/<action_name>/<parameter_1>/<parameter_2>/
<parameter_n>

Parameters are added with slashes into the URL after the action name,
so if you have an action autocard in your controller: (let's assume it
is called PostsController)

function autocard ($param1, $param2) {
echo $param1;
echo $param2;
}

Now you can call this function with the URL /posts/autocard/hello/
world
and it would print you in the view: hello world
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

No comments: