我正在通过 CodeIngniter 插入用户的注册详细信息,但 strip_tags() 在 Codeigniter 中不起作用。我的代码是 -
$u_name=strip_tags($this->input->post('username')); // strip is not working
$data = array(
'User_Name' => $u_name
);
$this->db->insert('Table', $data );
如果这不能,那么请告诉我关于 html 标签条的选项。提前致谢。