Controller
// json 설정 $this->output->set_header('Content-Type: application/json; charset=utf-8'); echo json_encode(array("rt" => "OK")); exit; |
Ajax
$.post(ROOT_URL + "member/certification_ok", {email: email_val, userName: userName_val}, function(json) { if(json.rt == "OK") { alert(json); } }); // End $.post Ajax |
'Backend > PHP' 카테고리의 다른 글
리퍼럴 체크 (0) | 2019.06.23 |
---|---|
정규식 표현 (0) | 2019.06.23 |
inc 파일 참조와 css 및 js 파일 참조 (0) | 2019.06.20 |
index url 줄이기 및 .htaccess 파일 생성 방법 (0) | 2019.06.20 |
XAMPP MySQL 실행 시 Port 3306 사용 중일 때 (1) | 2019.05.05 |