Welcome Guest, Not a member yet? Register   Sign In
A little help understanding the controller
#17

[eluser]intoitdaily[/eluser]
Holy Hell that was easy! It literally took me like 3 minutes to make it work! all I did was add
Code:
$route['blog/:num'] = 'blog/id';
to my routes.php file.
In my controllers I changed all the
Code:
$this->uri->segment(3)
to be
Code:
$this->uri->segment(2)
and in my views I changed all the anchors from
Code:
<?=anchor('blog/id/'. $row->id .'/', $row->title); ?>
to
Code:
<?=anchor('blog/'. $row->id .'/', $row->title); ?>

so simple! The only thing is in a large application, you have to stay on top of your routes if this is something you do often. It can get a little bit confusing if you forget to change a redirect link or something in a view or controller. Thanks again guys!


Messages In This Thread
A little help understanding the controller - by El Forum - 04-27-2009, 11:32 PM
A little help understanding the controller - by El Forum - 04-28-2009, 03:33 AM
A little help understanding the controller - by El Forum - 04-28-2009, 06:31 AM
A little help understanding the controller - by El Forum - 04-28-2009, 06:53 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:05 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:21 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:25 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:43 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:46 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:49 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:56 AM
A little help understanding the controller - by El Forum - 04-28-2009, 07:59 AM
A little help understanding the controller - by El Forum - 04-28-2009, 08:14 AM
A little help understanding the controller - by El Forum - 04-28-2009, 08:57 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:07 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:35 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:50 AM
A little help understanding the controller - by El Forum - 04-28-2009, 09:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB