티스토리 뷰
로그인 폼과 로그인시 ID,PW 확인하는 코드입니다.
CSS는 취향에 맞춰 만들어주세요.
직접 만든 코드라 서툴러도 이해해주세요 ㅎㅎ
<logIn.php>
<!DOCTYPE html>
<?php
include "session.php";
?>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="main.css">
<title></title>
</head>
<center>
<body>
<br><br><br><br><h1>LOGIN</h1><br><br>
<form method="post" action="signIn.php">
<input type="text" name="userId"><br><br>
<input type="password" name="userPw"><br><br><br><br>
<button type="submit">LOGIN</button>
<button type="button"><a href="register.html">REGISTER</a></button>
</form>
</body>
</center>
</html>
<signIn.php>
<?php
include "session.php";
include "./dbConnect.php";
$connect = new mysqli($host, $user, $pw, $dbName);
$query = "select userId,userPw from member";
$result = mysqli_query($mysqli,$query);
$userId = $_POST['userId'];
$userPw = $_POST['userPw'];
$check="select * from member where userId='$userId'";
$result=$mysqli->query($check);
$row=$result->fetch_array(MYSQLI_ASSOC);
if($row['userPw']==$userPw){
setcookie('session_Id', $userId, time()+86300, '/');
setcookie('logIn_time', time(), time()+86300, '/');
setcookie('session_Pw', $userPw, time()+3600, '/');
echo "<script>alert('$userId 님, 반갑습니다'); location.href='main.php';</script>";
}
else {
echo "<script>alert('ID와 PW를 확인해주세요'); location.href='./logIn.php';</script>";
}
?>
<session.php>
<?php
session_start();
?>
<결과물>
'웹 공부 > 웹 개발 (APM)' 카테고리의 다른 글
웹 개발 #메인페이지 코드 (0) | 2019.06.24 |
---|---|
웹 개발 #CSS 코드 (0) | 2019.06.24 |
웹 개발 #회원가입 폼, DB 저장 코드 (0) | 2019.06.24 |
웹 개발 #게시판 글 읽기, 수정, 삭제 코드 (0) | 2019.06.24 |
웹 개발 #게시판 글쓰기, 저장, 목록 코드 (0) | 2019.06.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday