欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php注冊審核重點解析(數(shù)據(jù)訪問)

 更新時間:2017年05月23日 11:05:31   作者:ChrissZhao  
這篇文章主要為大家解析了php注冊審核重點,數(shù)據(jù)進行訪問,具有一定的參考價值,感興趣的小伙伴們可以參考一下

關(guān)于審核,如發(fā)表文章的審核、員工請假的審核、藥品申請的審核等等,代碼大同小異。

一.注冊功能(zhece.php   chuli.php)

1.zhece.php

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <form method="post" action="chuli.php">
 <div style="margin:10px 500px"> 
   <h2 > &nbsp;&nbsp; &nbsp; &nbsp; 注冊頁面</h2>
  <div>用戶名:<input type="text" name="users"/></div><br />
  <div>密碼:<input type="text" name="pwd"/></div><br />
  <div>姓名:<input type="text" name="name"/></div><br />
  <div>性別:<input type="text" name="sex"/></div><br />
  <div>生日:<input type="text" name="birthday"/></div><br />
  <input type="submit" value="注冊" />
  <a href="denglu.php" rel="external nofollow" >已有賬號,立即登錄</a>
  </div>
 </form>
 <body>
 </body>
</html>

2.chuli.php

<?php

$users = $_POST["users"];
$pwd = $_POST["pwd"];
$name= $_POST["name"];
$sex = $_POST["sex"];
$birthday = $_POST["birthday"];
require "DBDA.class.php";
$db = new DBDA();
$sql = "insert into users values ('{$users}','{$pwd}','{$name}',{$sex},'{$birthday}',0)";
if($db->query($sql,0)){
header("location:zhuce.php"); 
 
}
?>

二.登錄功能(denglu.php  login.php ) 

1.denglu.php

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>
 <body>
  <form method="post" action="login.php">
 <div style="margin:100px 500px"> 
   <h2 > &nbsp;&nbsp; &nbsp; &nbsp; 登錄頁面</h2>
  <div>用戶名:<input type="text" name="users"/></div><br />
  <div>密碼:<input type="text" name="pwd"/></div><br />
  <input type="submit" value="登錄" />
  <a href="zhuce.php" rel="external nofollow" >沒有賬號,立即注冊</a>
  </div>
 </form>
 </body>
</html>

2.login.php

<?php

$users = $_POST["users"];
$pwd = $_POST["pwd"];
require "DBDA.class1.php";
$db = new DBDA();
$sql = "select * from users where users = '{$users}'";
$arr = $db->query($sql);

//$arr[0][1] 密碼
//$arr[0][5] 審核狀態(tài)


if($arr[0][1] == $pwd && !empty($pwd))
{
 if($arr[0][5])
 {
  echo "登錄成功!";
 }
 else{
  echo "審核未通過!";
 }
}
else{
 echo "用戶名或密碼錯誤!";
}

?>

 

三.管理員的審核功能(guanliyuan.php  tongguo.php  chexiao.php)

1.guanliyuan.php

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
 </head>

<body>
<h1>管理員審核</h1>
<table width="100%" border="1" cellpadding="0" cellspacing="0">
 <tr>
  <td>用戶名</td>
  <td>密碼</td>
  <td>姓名</td>
  <td>性別</td>
  <td>生日</td>
  <td>操作</td>
 </tr>
 <?php
 require"DBDA.class1.php";
 $db = new DBDA();
 
 $sql = "select * from users";
 $arr = $db->query($sql);
 
 foreach($arr as $v)
 {
  $str = "";
  if($v[5])
  {
   $str = "<span style='color:green'>已通過</span>
   <a href='chexiao.php?uid={$v[0]}'>撤銷</a>";
  }
  else
  {
   $str = "<a href='tongguo.php?uid={$v[0]}'>通過</a>";
  }
  
  echo "<tr>
  <td>{$v[0]}</td>
  <td>{$v[1]}</td>
  <td>{$v[2]}</td>
  <td>{$v[3]}</td>
  <td>{$v[4]}</td>
  <td>{$str}</td>
 </tr>";
 }
 ?>
</table>
</body>
</html>

2.tongguo.php

<?php
$uid = $_GET["uid"];
require "DBDA.class.php";
$db = new DBDA();
$sql = "update users set isok=1 where uid='{$uid}'";
$db->query($sql,0);
header("location:guanliyuan.php");

3.chexiao.php

<?php
$uid = $_GET["uid"];
require "DBDA.class.php";
$db = new DBDA();
$sql = "update users set isok=0 where uid='{$uid}'";
$db->query($sql,0);
header("location:guanliyuan.php");

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論