Мой контроллер:
Код: Выделить всё
class Site extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
function index()
{
$this->load->view('options_view');
}
function create()
{
$data = array(
'title' => $this->load->input->post('title'),
'content' => $this->load->input->post('content')
);
$this->site_model->add_record($data);
$this->index();
}
}
Серьезность: уведомление
Сообщение: неопределенное свойство: CI_Loader::$input
Имя файла: контроллеры/site.php
Номер строки: 19
Подробнее здесь: https://stackoverflow.com/questions/240 ... -ci-loader
Мобильная версия