책에 있는 소스를 실행했는데, 에러가 납니다. 어디가 잘못 되었는지요.
===============================
source : php와 html을 사용해서 간단한 인증 구현
===============================
<?php
// 짧은 스타일의 변수로 만든다.
@ $name = $_POST['name'];
@ $password = $_POST['password'];
if(empty($name)||empty($password))
{
//방문자는 이름과 비밀번호를 써야 한다.
?>
<h1>Please Log In</h1>
This page is secret.
<form method="post" action="secret.php">
<table border="1">
<tr>
<th> Username </th>
<td> <input type="text" name="name"> </td>
</tr>
<tr>
<th> Password </th>
<td> <input type="password" name="password"> </td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Log In">
</td>
</tr>
</table>
</form>
<?php
}
else if($name=='user'&&$password=='pass')
{
// 방문자의 이름, 비밀번호쌍이 맞는 정보였을 때.
echo '<h1>Here it is!</h1>';
echo 'I bet you are glad you can see this secret page.';
}
else
{
// 방문자의 이름, 비밀번호쌍이 틀렸을 때.
echo '<h1>Go Away!</h1>';
echo 'You are not authorized to view this resource.';
}
?>
===================
에러코드
===================
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
--------------------------------------------------------------------------------
Apache Server at localhost Port 80
===============================
source : php와 html을 사용해서 간단한 인증 구현
===============================
<?php
// 짧은 스타일의 변수로 만든다.
@ $name = $_POST['name'];
@ $password = $_POST['password'];
if(empty($name)||empty($password))
{
//방문자는 이름과 비밀번호를 써야 한다.
?>
<h1>Please Log In</h1>
This page is secret.
<form method="post" action="secret.php">
<table border="1">
<tr>
<th> Username </th>
<td> <input type="text" name="name"> </td>
</tr>
<tr>
<th> Password </th>
<td> <input type="password" name="password"> </td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Log In">
</td>
</tr>
</table>
</form>
<?php
}
else if($name=='user'&&$password=='pass')
{
// 방문자의 이름, 비밀번호쌍이 맞는 정보였을 때.
echo '<h1>Here it is!</h1>';
echo 'I bet you are glad you can see this secret page.';
}
else
{
// 방문자의 이름, 비밀번호쌍이 틀렸을 때.
echo '<h1>Go Away!</h1>';
echo 'You are not authorized to view this resource.';
}
?>
===================
에러코드
===================
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
--------------------------------------------------------------------------------
Apache Server at localhost Port 80
댓글 4개
게시글 목록
| 번호 | 제목 |
|---|---|
| 209 |
개발자
질문은 아니지만..
1
|
| 202 | |
| 193 | |
| 192 | |
| 185 | |
| 177 | |
| 174 | |
| 171 | |
| 167 | |
| 162 |
개발자
latest() sql
4
|
| 160 | |
| 157 | |
| 150 |
디자이너
포토샵 색상문제 좀 봐주세요.
6
|
| 147 | |
| 145 |
개발자
헉........
1
|
| 142 |
개발자
플래쉬파일로
3
|
| 138 | |
| 133 | |
| 130 | |
| 127 |
개발자
php질문좀 하겠습니다.
2
|
| 117 | |
| 115 | |
| 111 |
디자이너
샘플같이 글씨 쓰는 방법...?
3
|
| 105 |
디자이너
글꼴 이름 좀 부탁드립니다.
5
|
| 102 | |
| 98 |
개발자
php 질문(초초보)
3
|
| 90 |
개발자
어떻게 하면...
7
|
| 77 | |
| 73 |
디자이너
그라이언트 주는 방법?
3
|
| 70 |
디자이너
투명도 주는 방법?
2
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기