1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<? include("../manage/category/common.php"); $loginQry = " SELECT Mpassword From member WHERE Mid = '$id' "; $loginResult = MYSQL_QUERY($loginQry); if( MYSQL_NUM_ROWS($loginResult) > 0){ $loginRow = MYSQL_FETCH_ARRAY($loginResult); if($loginRow[Mpassword] == $passwd){ setcookie("USERID",$id,0); ?>
<body onLoad="test('<?=$filedir?>')">
<script> function test(filedir) { location.href="mypage_01.php" } </script>
<? } else { // ÆÐ½º¿öµå°¡ ¸ÂÁö ¾ÊÀ» °æ¿ì ?>
<script> alert('ÆÐ½º¿öµå¸¦ È®ÀÎÇϼ¼¿ä.'); </script>
<? } } else{ //¾ÆÀ̵𰡠¾ø´Â °æ¿ì
?>
<script> alert('¾ÆÀ̵𸦠ȮÀÎÇϼ¼¿ä.'); </script>
<? } ?>
|