PHP 기반 로그 인 및 등록 기능 구현
2.로그 인 한 html 페이지 표시 효과 그림
3.등 록 된 페이지 의 표시 효과 도
4.로그 인 페이지 의 form 폼 코드
<div class="sign-con w1200">
<img src="img/logn-tu.gif" class="sign-contu f-l"/>
<form action="login.php" method="post">
<div class="sign-ipt f-l">
<p> :</p>
<input type="text" name="username" placeholder=" / " />
<p> :</p>
<input type="password" name="password" placeholder=" " />
<br />
<button class="slig-btn"> </button>
<p>
?
<a href="regist.html" rel="external nofollow" > </a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="wj"> ?</a>
</p>
<div class="sign-qx">
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="f-r">
<img src="img/sign-xinlan.gif" />
</a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="qq f-r">
<img src="img/sign-qq.gif" />
</a>
<div style="clear: both;"></div>
</div>
</div>
</form>
<div style="clear: both;"></div>
</div>
5.등록 페이지 의 form 폼 코드
<div class="password-con registered">
<form action="regist.php" method="post">
<div class="psw">
<p class="psw-p1"> </p>
<input type="text" name="username" placeholder="HR " />
<span class="dui"></span>
</div>
<div class="psw">
<p class="psw-p1"> </p>
<input type="password" name="password" placeholder=" " />
<span class="cuo"> 6-16 、 、 </span>
</div>
<div class="psw">
<p class="psw-p1"> </p>
<input type="password" name="repassword" placeholder=" " />
<span class="cuo"> , </span>
</div>
<div class="psw psw2">
<p class="psw-p1"> / </p>
<input type="text" name="telphone" placeholder=" / " />
<button> </button>
</div>
<div class="psw psw3">
<p class="psw-p1"> </p>
<input type="text" placeholder=" " />
</div>
<div class="yanzhentu">
<div class="yz-tu f-l">
<img src="img/psw-yanzhengtu.gif" />
</div>
<p class="f-l">
?
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" > </a>
</p>
<div style="clear: both;"></div>
</div>
<div class="agreement">
<input type="checkbox" name="hobby" />
<p>
<span>《 》</span>
</p>
</div>
<button type="submit" value=" " class="psw-btn"> </button>
<p class="sign-in">
?
<a href="login.html" rel="external nofollow" > </a>
</p>
</form>
</div><!-- -->
6.login.php 코드
<?php
header("Content-type: text/html; charset=utf-8");
$username = $_POST['username'];
$password = $_POST['password'];
$conn = new mysqli('localhost','root','root','shopping');
if ($conn->connect_error){
echo ' !';
exit(0);
}else{
if ($username == ''){
echo '<script>alert(" !");history.go(-1);</script>';
exit(0);
}
if ($password == ''){
echo '<script>alert(" !");history.go(-1);</script>';
exit(0);
}
$sql = "select username,password from userinfo where username = '$_POST[username]' and password = '$_POST[password]'";
$result = $conn->query($sql);
$number = mysqli_num_rows($result);
if ($number) {
echo '<script>window.location="index.html";</script>';
} else {
echo '<script>alert(" !");history.go(-1);</script>';
}
}
?>
7.regist.php 코드
<?php
header("Content-type: text/html; charset=utf-8");
$username = $_POST['username'];
$password = $_POST['password'];
$repassword = $_POST['repassword'];
$telphone = $_POST['telphone'];
if ($username == ''){
echo '<script>alert(" !");history.go(-1);</script>';
exit(0);
}
if ($password == ''){
echo '<script>alert(" ");history.go(-1);</script>';
exit(0);
}
if ($password != $repassword){
echo '<script>alert(" ");history.go(-1);</script>';
exit(0);
}
if($password == $repassword){
$conn = new mysqli('localhost','root','root','shopping');
if ($conn->connect_error){
echo ' !';
exit(0);
}else {
$sql = "select username from userinfo where username = '$_POST[username]'";
$result = $conn->query($sql);
$number = mysqli_num_rows($result);
if ($number) {
echo '<script>alert(" ");history.go(-1);</script>';
} else {
$sql_insert = "insert into userinfo (username,password,telphone) values('$_POST[username]','$_POST[password]','$_POST[telphone]')";
$res_insert = $conn->query($sql_insert);
if ($res_insert) {
echo '<script>window.location="index.html";</script>';
} else {
echo "<script>alert(' , !');</script>";
}
}
}
}else{
echo "<script>alert(' !'); history.go(-1);</script>";
}
?>
8.첫 페이지 에 들 어간 그림9.데이터베이스 이미지
PHP 기반 로그 인 및 등록 기능 의 실현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 PHP 가 로그 인 및 등록 을 실현 하 는 기능 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.