ontguy, I don’t know what Colin does… but that is basically a good way to group it.
In your controller it could be something like
<?php
class Bike extends Controller {
function Bike()
{
parent::Controller();
$this->load->helper('url');
}
function add()
{
$this->load->view('bike/add');
}
}
That’s a basic example of how I would do it.
