|
hi 童鞋们,请教一个问题哈,使用form_validation的时候在前台不显示出来,但是开发的时候在本地确实正常的。不知道可能有哪些问题可能导致这种状况,
view这层使用的是<?php echo form_error('username'); ?>,
在controller这层使用的是$this->form_validation->set_rules('username', '', 'trim|required|min_length[5]|max_length[12]|xss_clean');进行设置,
判断是if ($this->form_validation->run() == FALSE)
{
$this->load->view('CreateUser');
}
|
|