uuu55
uu passwd.txt 라는 파일에는 저게 저장되어 있구요!
<?
$member_id=$_POST["member_id"];
$member_password=$_POST["member_password"];
$members=file_get_contents("passwd.txt");
?>
<!DOCTYPE HTML>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>Main</title>
<style>
a {
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<!-- ID 랑 PW 잘 입력했는지 검사 -->
<? if(!isset($_POST['member_id']) || !isset($_POST['member_password'])) { ?>
<p style="text-align: center;">ID 또는 PW 가 입력되지 않았습니다</p>
<button style="text-align: center;"><a href="login.php" style="text-decoration: none; color: black;"> 돌아가기 </a></button>
<!-- 전달돼서 passwd 에 회원정보 이쓴ㄴ지 확인 -->
<? } else {
$result_id=strstr($members, $member_id);
$result_password=strstr($members, $member_password);
if($result_id==$member_id && $result_password==$member_password)
{ ?>
<button><a href="문제 페이지">문제 풀러 가기</button></a>
<button><a href="logout.php">로그아웃</a></button>
<? }
else
echo "ID 와 PW 를 확인하여 다시 입력해주십시오";
}
?>
</body>
</html>
php 코드는 위와 같이 짰습니다.. login.php 화면에서 ID 에 uuu55 PW 에 uu 를 치면 echo "ID 와 PW 를 확인하여 다시 입력해주십시오"; 이게 실행되는데요 ㅠㅠ..... strstr 로 txt 파일과 post로 입력받은 uuu55 와 uu 를 대조하여 맞으면 로그인이 되게 했는데...틀린 부분이 어딘가요?? ㅠㅠ