...

World Wide Web Server 2012-07-04 16:02:59 -07:00
parent 4d1fcdc208
commit f4c577cfad

@ -17,5 +17,24 @@ DrF Reverse Routing is an extension of the URL Helper that overrides the site_ur
[h2]Example[/h2]
- setup a Test Controller
[code]
<?php
class Test extends MY_Controller{
function Test()
{
parent::MY_Controller();
}
function test( $param1 ){
echo '$param1';
}
function redirect()
{
$this->load->helper( 'url' );
redirect( 'test/test/from_redirect' )
}
}
?>
[/code]