El Forum
08-08-2012, 06:30 AM
[eluser]kingmaoam[/eluser]
Hi,
I have a problem with the routing in my CI project.
To start this right: yes I have read the User Guide and adopted the "news" tutorial to get the expected behaviour.
What I have is this:
in my routes.php
in the admin controller located in controller/admin:
On calling the URL http://urltomyproject.de/admin/sub/content I expect to get echoed 'content' but what I get is '$i' as string.
What have I forgotten to do?
KR
kingmaoam
Hi,
I have a problem with the routing in my CI project.
To start this right: yes I have read the User Guide and adopted the "news" tutorial to get the expected behaviour.
What I have is this:
in my routes.php
Code:
$route['admin/sub/(:any)'] = 'admin/admin/loader/$i';
in the admin controller located in controller/admin:
Code:
public function loader($var)
{
echo $var;
}
On calling the URL http://urltomyproject.de/admin/sub/content I expect to get echoed 'content' but what I get is '$i' as string.
What have I forgotten to do?
KR
kingmaoam