I'm a CI newb, And I'm converting a site I've developed procedurally, and I want to be as "correct" as possible... I have my default controller, which has one class, and within it a method per page, each which loads different content views depending on which page is being visited.
Easy enough... But let's say that on the persons page, within the persons table, there are fields containing details about each respective person coming from various tables (ie favorite beers, recent purchases, favorite colors, etc...). So maybe I should have a "person" class and different methods calling different models? I want to play by the rules, but get there as quickly as possible. Many thanks in advance!