|
$this->form_validation->set_rules('guestuser', '用户名', 'trim|required|min_length[5]|max_length[12]|xss_clean|callback_username_check');
$this->form_validation->set_rules('guestpsd', '密码', 'trim|required|matches[passconf]|md5|callback_password_check');
我通过这个验证了用户名和密码, 如何在模型里面得到trim过的用户名,和加密过的密码 |
|