主頁(yè) > 知識(shí)庫(kù) > PHP實(shí)現(xiàn)會(huì)員注冊(cè)系統(tǒng)

PHP實(shí)現(xiàn)會(huì)員注冊(cè)系統(tǒng)

熱門(mén)標(biāo)簽:招標(biāo)自動(dòng)語(yǔ)音外呼系統(tǒng) 地圖標(biāo)注視頻廣告入駐 OMG地圖標(biāo)注app 黔江400電話如何辦理 gps 地圖標(biāo)注軟件 400電話鄭州申請(qǐng) 電銷機(jī)器人便宜的有嗎 中原區(qū)電話機(jī)器人價(jià)格 ai電話機(jī)器人加盟代理

分享一個(gè)基于PHP的非常簡(jiǎn)單基礎(chǔ)的注冊(cè)系統(tǒng),為了減輕難度沒(méi)有使用Cookie和Session,數(shù)據(jù)庫(kù)大家按照自己需求更改,有問(wèn)題歡迎聯(lián)系我。

index.html

!DOCTYPE html>
html lang="en">
head>
 meta charset="UTF-8">
 title>Title/title>
/head>
body>
 
 a href="join_us.html" >
  注冊(cè)
 /a>
 
h2>分開(kāi)一下/h2>
 
a href="login.html" >
 登錄
/a>
/body>
/html>

join_us.html

注冊(cè)頁(yè)面,發(fā)一個(gè)表單給add_member.php,使用post。

!DOCTYPE html>
html lang="en">
head>
 meta charset="UTF-8">
 title>Title/title>
/head>
body>
h1>歡迎加入我們/h1>
form action="add_member.php" method="post" name="register_form">
 table>
  tr>
   td>
    用戶名:
   /td>
   td>
    input name="member_name" type="text">
   /td>
  /tr>
 
  tr>
   td>
    輸入密碼:
   /td>
   td>
    input name="member_password" type="password">
   /td>
  /tr>
  tr>
   td>input type="submit" value="確定" >
  /td>
 /table>
/form>
 
/body>
/html>

add_member.php

稍微用了一下js,也可以用header(),僅測(cè)試使用,項(xiàng)目不要傻乎乎的給root權(quán)限。

?php
$account = $_POST["member_name"];
$password = $_POST["member_password"];
//獲取字段信息
 
$link = mysqli_connect("127.0.0.1", "root", "") or die("連接失敗");
//連接數(shù)據(jù)庫(kù)
 
mysqli_select_db($link, "jack");
//連接數(shù)據(jù)表
 
 
$sql = "SELECT * FROM info WHERE Name='$account'";
$result = mysqli_query($link, $sql);
//檢索數(shù)據(jù)庫(kù)同名賬戶
 
if (mysqli_num_rows($result) != 0) {
 mysqli_free_result($result);
 mysqli_close($link);
 //釋放空間
 
 echo "script>alert('該用戶名已被使用');history.go(-1);/script>";
 //返回
 
}
//同名賬戶返回注冊(cè)頁(yè)
 
else {
 $sql = "INSERT INTO info(Name,Password) VALUES( '$account','$password' )";
 mysqli_query($link, $sql);
 //寫(xiě)入
 
 mysqli_free_result($result);
 mysqli_close($link);
 //釋放空間
 
 echo"注冊(cè)成功";
}
//非同名寫(xiě)入數(shù)據(jù)庫(kù)
?>

login.html

登錄頁(yè)面,發(fā)表單給check_password.php

!DOCTYPE html>
html lang="en">
head>
 meta charset="UTF-8">
 title>Title/title>
/head>
body>
h2>
 歡迎登錄
/h2>
form action="check_password.php" method="post" name="register_form">
 table>
  tr>
   td>
    用戶名:
   /td>
   td>
    input name="member_name" type="text">
   /td>
  /tr>
 
  tr>
   td>
    輸入密碼:
   /td>
   td>
    input name="member_password" type="password">
   /td>
  /tr>
  tr>
   td>input type="submit" value="確定" >
   /td>
 /table>
/form>
/body>
/html>

check_password.php

驗(yàn)證密碼

?php
$account = $_POST["member_name"];
$password = $_POST["member_password"];
//獲取字段信息
 
$link = mysqli_connect("127.0.0.1", "root", "") or die("連接失敗");
//連接數(shù)據(jù)庫(kù)
 
mysqli_select_db($link, "jack");
//連接數(shù)據(jù)表
 
$sql = "SELECT * FROM info WHERE Name='$account'AND Password='$password'";
$result=mysqli_query($link,$sql);
 
if (mysqli_num_rows($result) == 0) {
 mysqli_free_result($result);
 mysqli_close($link);
 //釋放空間
 
 echo "script>alert('賬戶或密碼錯(cuò)誤');history.go(-1);/script>";
 //返回
}
 
else{
 mysqli_free_result($result);
 mysqli_close($link);
 //釋放空間
 
 echo "登錄成功";
 
 //建議在此處setcookie();
}
?>

都是很基礎(chǔ)的東西,大家多多交流。

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

您可能感興趣的文章:
  • PHP+MYSQL會(huì)員系統(tǒng)的開(kāi)發(fā)實(shí)例教程
  • PHP+MYSQL會(huì)員系統(tǒng)的登陸即權(quán)限判斷實(shí)現(xiàn)代碼

標(biāo)簽:哈密 那曲 阿里 日照 北京 池州 孝感 濟(jì)源

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP實(shí)現(xiàn)會(huì)員注冊(cè)系統(tǒng)》,本文關(guān)鍵詞  PHP,實(shí)現(xiàn),會(huì)員,注冊(cè),系統(tǒng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP實(shí)現(xiàn)會(huì)員注冊(cè)系統(tǒng)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP實(shí)現(xiàn)會(huì)員注冊(cè)系統(tǒng)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章