У меня проблема с CodeIgniter 3.
Когда я пытаюсь получить доступ к URL с параметром, как эти http://localhost/crm/Customer/update/3
Результатом является обновление страницы с бесконечным циклом.
Это не происходит, если я получаю доступ к другому представлению или URL.
Например: http://localhost/crm/Customer/list
Ниже файл моего контроллера:
class Customer extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->helper(array('form', 'url', 'customer'));
$this->load->database();
$this->load->library('session');
$this->load->model(array('Auth', 'Model_customer'));
$this->_init();
}
function _init() {
$this->output->set_template('index');
// $this->load->section('sidebar','template/sidebar');
}
public function index(){
...
$this->load->view('customer/index');
}
function update($id) {
// TEST
$data['id'] = $id;
$this->load->view('customer/update2', $data);
}
}
Любая помощь будет ценной. Спасибо