我有这样的表单验证:
function insert() {
$this->form_validation->set_message('required', '*column must be filled');
$this->form_validation->set_rules('judul', 'Judul', 'required');
$this->form_validation->set_rules('isi', 'Isi', 'required');
if ($this->form_validation->run() == FALSE) {
$this->layout->addJs('ckeditor/ckeditor.js');
$this->layout->addJs('js/admin/b267648789c30a07b0efa5bce7bdd9fe.js');
$this->layout->view('admin/admin_view/insertAdmin_view');
} else {
$data = array(
'title' => $this->input->post('judul'),
'content' => $this->input->post('isi'),
);
$this->db->insert('newses', $data);
... other proses ...
}
}
尽管我在表单添加数据中填写了数据(我使用 ckeditor 来添加数据),但条件始终为 false,因此它没有添加我想要的数据。但它有错误'如果我添加一些 html 数据,但如果我添加普通数据文本它工作得很好'。再次,当我在 localhost xampp 中运行我的程序时,一切正常,但是当我使用托管时,就会发生这种情况。有什么建议吗?谢谢你的所有建议。