class Class_name extends CI_Controller
{
public function __construct()
{
$this->param = $this->input->post(NULL, true);
}
}
POST로 들어오는 모든 값에 대해 XSS clean 처리를 해줌

class Class_name extends CI_Controller
{
public function __construct()
{
$this->param = $this->input->post(NULL, true);
}
}
POST로 들어오는 모든 값에 대해 XSS clean 처리를 해줌