728x90
if(!isset($_SESSION['userID']) || empty($_SESSION['userID']) || empty($_GET['uid'])){
// 세션 및 접속 조건을 만족하지 못하면 (비정상접속)
// 둘중의 하나를 적어준다.
echo ("<script>alert('정상적인 접속이 아닙니다');window.top.location.replace('index.php');</script>");
//echo ("<meta http-equiv='Refresh' content='0; URL=index.php'>");
exit;
}
// 접속 IP 체크는 필요한 경우에 코드를 추가한다.
require_once $_SERVER['DOCUMENT_ROOT'].'/dbconnect.php'; // 데이터베이스 접속
728x90
'Web 프로그램 > Web 디버깅' 카테고리의 다른 글
[ajax 에러] JSON.parse: unexpected character at line 1 column 1 of the JSON data (0) | 2017.02.18 |
---|---|
PHP 디버깅 요령 및 경고메시지 처리 방법 (2) | 2016.11.30 |
Undefined index 에러 해결방법 (0) | 2016.09.10 |
PHP alert 창 띄우기 (0) | 2016.04.10 |
[PHP] error 메시지 출력 (0) | 2015.04.11 |