HTTP 로그인 인증창에 대해 질문합니다 도와주세요ㅠㅠ

· 13년 전 · 1897
안녕하세요
저는 로그인페이지를 만들었는데..어떤 고객의 요청으로 인해
로그인페이지보다 그냥 "HTTP 로그인 인증창"이 띄울수있도록 원하답니다.
그래서 고객의 요청대로 그렇게 만들었는데..잘 안되었어요 ㅠㅠ
▒▒▒▒▒ 로그인 페이지 ▒▒▒▒▒
<?
require "include/config.php";
include "include/index_cookie.php";

if($_SESSION[mb_userid]) { go_d(0,'m_sub01.html'); } // 이미 로그인 된경우 메인으로
?>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script language="JavaScript" src="<?echo"$HOME_PATH"?>/include/ebook.js"></script>
<LINK REL="StyleSheet" HREF="<?echo"$HOME_PATH"?>/include/style.css" type="text/css">
<link href="../include/style.css" rel="stylesheet" type="text/css">

<form action="app_login_act.html" method=post name=ebook_login onsubmit='return valid_ebooklogin_check()'>
<input type='hidden' name='mode' value='ebook_login'>
<?
if($_SERVER[HTTP_REFERER]) {
$returl = $_SERVER[HTTP_REFERER];
}else if($returl) {
$returl = $returl;
}
echo"<input type=hidden name=url value='$returl'>";
// echo"<input type=hidden name=url value='$PHP_SELF'>";
?>
<table width=80% border=0 align=center cellpadding="0" cellspacing="0">
<tr>
<td height="25" colspan=2 align=center>
로그인
<tr>
<td width="35%" height="25">로그인
<td width="65%" height="25"><input name="mb_userid" type="text" id="mb_userid" size="20">
<tr>
<td width="35%" height="25">비밀번호
<td width="65%" height="25"><input name="mb_pwd" type="password" id="mb_pwd" size="20" onKeyPress="if(window.event.keyCode==13) ebooklogin();">
<tr>
<td height="25" colspan=2>
<input type="checkbox" onClick="id_save_delete(document.ebook_login);" name="id_save">자동로그인
<tr>
<td height="25" colspan=2 align=center>
<input type="submit" value="로그인" onclick="javascript:ebooklogin()">
</td>
</tr>
</table>
</form>
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
으로 잘 되었지만..
▒▒▒▒▒ HTTP 로그인 인증창 ▒▒▒▒▒
<?
require "include/config.php";
include "include/index_cookie.php";

if($_SESSION[mb_userid]) { go_d(0,'m_sub01.html'); } // 이미 로그인 된경우 메인으로
function authenticate() // 인증을 받기 위해 인증 창을 여는 함수!
{
// 인증 창이 떴을때의 문구와 인증 창의 헤더 설정!
Header( "WWW-authenticate: basic realm=\"ADMIN영역\" ");
Header( "HTTP/1.0 401 Unauthorized");

// 아이디와 비밀번호가 일치하지 않을때 보여주는 문구!
echo("이곳에 들어오시려면 관리자 아이디 암호가 필요합니다.");
exit;
}
// 관리자 정보가 없을때 인증 창을 불러내는 부분으로서 관리자 인증을 받을때까지 인증 창을 띄움.
if(!isset($_SESSION[mb_userid]) || ($PHP_AUTH_USER!='mb_userid' || $PHP_AUTH_PW!='mb_pwd')) {
authenticate();
}
?>
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
수정해봤는데.. 잘 안되었습니다 ㅠㅠㅠ
도와주세요 ㅠㅠㅠ
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,772
13년 전 조회 5,618
13년 전 조회 1,877
13년 전 조회 1,428
13년 전 조회 1,594
13년 전 조회 1,397
13년 전 조회 1,299
13년 전 조회 1,541
13년 전 조회 1,657
13년 전 조회 1,381
13년 전 조회 1,422
13년 전 조회 1,871
13년 전 조회 8,440
13년 전 조회 3,634
13년 전 조회 1,361
13년 전 조회 1,926
13년 전 조회 1,872
13년 전 조회 1,964
13년 전 조회 5,925
13년 전 조회 1,358
13년 전 조회 1,869
13년 전 조회 3,316
13년 전 조회 2,936
13년 전 조회 2,585
13년 전 조회 2,765
13년 전 조회 3,695
13년 전 조회 1,365
13년 전 조회 2,881
13년 전 조회 2,215
13년 전 조회 4,028
13년 전 조회 4,084
13년 전 조회 1,895
13년 전 조회 4,906
13년 전 조회 2,028
13년 전 조회 2,172
13년 전 조회 2,658
13년 전 조회 2,579
13년 전 조회 1,664
13년 전 조회 1,823
13년 전 조회 3,759
13년 전 조회 1,835
13년 전 조회 2,299
13년 전 조회 3,105
13년 전 조회 2,940
13년 전 조회 1,644
13년 전 조회 2,282
13년 전 조회 4,614
13년 전 조회 1,919
13년 전 조회 2,367
13년 전 조회 1,898
13년 전 조회 2,088
13년 전 조회 2,500
13년 전 조회 1,618
13년 전 조회 2,520
13년 전 조회 2,166
13년 전 조회 1,747
13년 전 조회 1만
13년 전 조회 1,866
13년 전 조회 1,726
13년 전 조회 1,806
13년 전 조회 2,547
13년 전 조회 1,887
13년 전 조회 2,008
13년 전 조회 1,649
13년 전 조회 1,499
13년 전 조회 5,613
13년 전 조회 1,934
13년 전 조회 1,952
13년 전 조회 1,798
13년 전 조회 7,678
13년 전 조회 1,814
13년 전 조회 2,168
13년 전 조회 2,119
13년 전 조회 3,813
13년 전 조회 1,849
13년 전 조회 3,671
13년 전 조회 2,198
13년 전 조회 2,748
13년 전 조회 2,293
13년 전 조회 2,471
13년 전 조회 2,715
13년 전 조회 1,523
13년 전 조회 1,728
13년 전 조회 1,729
13년 전 조회 2,027
13년 전 조회 2,076
13년 전 조회 2,811
13년 전 조회 1,691
13년 전 조회 1,755
13년 전 조회 4,161
13년 전 조회 1,875
13년 전 조회 2,129
13년 전 조회 2,527
13년 전 조회 1,992
13년 전 조회 2,935
13년 전 조회 1,686
13년 전 조회 3,749
13년 전 조회 2,172
13년 전 조회 2,423
13년 전 조회 1,883