Thanks Lance your method works
but while loading i tried with
$this->load->module_model(EXAMPLE_FOLDER, 'example'); and this worked instead of
$this->load->model('other_table_model');
This is my controller
<?php
require_once(FUEL_PATH.'/libraries/Fuel_base_controller.php');
class example1 extends Fuel_base_controller {
public $nav_selected = 'example1';
function __construct()
{
parent::__construct();
$this->confi…