[PHP] CI (코드이그나이터) POST 전송 보안처리 방법 Posted on 2013년 7월 11일 by HyungJin PHP class Class_name extends CI_Controller { public function __construct() { $this->param = $this->input->post(NULL, true); } } 1234567 class Class_name extends CI_Controller{ public function __construct() { $this->param = $this->input->post(NULL, true); }} POST로 들어오는 모든 값에 대해 XSS clean 처리를 해줌 Share ContentFacebook트위터PinterestLinkedIn이것이 좋아요:좋아하기 가져오는 중...