g

에러좀 찾아주세요

· 2008-04-19 (토) 23:31:17 · 2286 · 4
책에 있는 소스를 실행했는데, 에러가 납니다. 어디가 잘못 되었는지요.

===============================
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개

@ $name = $_POST['name'];
@ $password = $_POST['password'];
부분을
$name = $_POST["name"];
$password = $_POST["password"];
로 변경해서 한번 해보세요.
2008-04-23 (수) 08:08:23
서버관리자에게 연락하세요
@ 하고 $ 띄우신거 아니죠?
붙여야될듯
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-01-11 조회 2,617
12-01-11 조회 1.2만
12-01-10 조회 2,614
12-01-08 조회 3,331
12-01-05 조회 5,226
11-12-29 조회 2,843
11-12-27 조회 2,746
11-12-25 조회 2,886
11-12-22 조회 3,191
11-12-14 조회 2,773
11-12-12 조회 3,363
11-11-28 조회 3,302
10-10-19 조회 2,769
08-09-05 조회 3,676
08-09-05 조회 3,502
08-06-14 조회 3,247
08-04-22 조회 3,517
08-04-17 조회 3,527
07-10-03 조회 4,129
07-10-03 조회 3,540
07-10-03 조회 7,206
07-10-03 조회 4,424
07-10-03 조회 3,172
07-10-03 조회 2,761
07-10-02 조회 3,508
07-10-02 조회 3,028
07-09-27 조회 4,943
07-09-27 조회 3,761
06-09-26 조회 3,454
06-09-26 조회 4,661
06-09-22 조회 3,828
06-09-22 조회 3,431
06-09-22 조회 4,167
06-09-21 조회 4,133
06-08-18 조회 3,615
05-11-30 조회 4,672
05-07-15 조회 4,527
05-03-23 조회 4,582
05-03-14 조회 3,233
05-03-13 조회 2,618
04-08-05 조회 5,700