PHP 기반 로그 인 및 등록 기능 구현

8440 단어 PHP로그 인책.
1.html 파일 세 개,php 파일 두 개,CSS 파일 몇 개,JS 파일 몇 개 를 새로 만 듭 니 다.
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 가 로그 인 및 등록 을 실현 하 는 기능 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 지원 바 랍 니 다!

좋은 웹페이지 즐겨찾기