회원가입시 중복체크하면 이런에러가 뜹니다.

회원가입시 중복체크는 다 이런 에러 메세지가 나네요~~
head.sub.php 에러 나는 것 같은데 모르겠네요.
전 완전 초보라서..
고수님들 부탁드립니다...
아래는 에러나는 32~38번째 줄 입니다.
header("Content-Type: text/html; charset=$g4[charset]");
$gmnow = gmdate("D, d M Y H:i:s") . " GMT";
header("Expires: 0"); // rfc2616 - Section 14.21
header("Last-Modified: " . $gmnow);
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
$gmnow = gmdate("D, d M Y H:i:s") . " GMT";
header("Expires: 0"); // rfc2616 - Section 14.21
header("Last-Modified: " . $gmnow);
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 2개
해더 함수는 화면출력(클라이언트쪽 메시지 전송)이 이루어지기 전에 호출되어야 합니다.
공백 문자, 리턴문자등등도 확인해 보세요