php簡單登陸,PHP簡易使用者登入系統

2021-10-25 21:11:32 字數 1494 閱讀 3975

php簡易使用者登入系統

最近剛剛看到php連線資料庫的例項,於是做了乙個簡易的使用者系統

直接上**

連線資料庫:connect.php

$servername = "localhost";

$username = "formbd";

$password = "formbd";

$dbname = "form";

// 建立連線

$conn = new mysqli($servername, $username, $password, $dbname);

// 檢測連線

if ($conn->connect_error) //判斷是否有submit操作

$name=$_post['name'];//post獲取表單裡的name

$user\_password=$_post['password'];//post獲取表單裡的password

include('connect.php');//鏈結資料庫

$q="insert into user(id,username,password) values (null,'$name','$user_password')";//向資料庫插入表單傳來的值的sql

$sql = "select \* from user where username = '$name'";

if (($conn->query($sql))==$name) ,1000);

else ,1000);

$conn->close();//關閉資料庫

使用者登入前端頁面:login.html

使用者名稱密 碼

(file:///d:/program%20files%20(x86)/網路編輯超級工具箱/lib/reg.html)

登入後端處理:login.php

header("content-type: text/html; charset=utf8");

if(!isset($_post["submit"]))//檢測是否有submit操作

include('connect.php');//鏈結資料庫

$name = $_post['name'];//post獲得使用者名稱表單值

$passowrd = $_post['password'];//post獲得使用者密碼單值

if ($name && $passowrd)else,1000);

";//如果錯誤使用js 1秒後跳轉到登入頁面重試;

}else,1000);

//如果錯誤使用js 1秒後跳轉到登入頁面重試;

$conn->close();//關閉資料庫

登入成功後:success.php

ps:功能未完善

include 'connect.php';

session_start(); //宣告變數

$username = isset($_session['nmae']) ? $_session['name'] : "";

歡迎光臨

PHP簡易使用者登入系統

最近剛剛看到php連線資料庫的例項,於是做了乙個簡易的使用者系統直接上 servername localhost username formbd password formbd dbname form 建立連線 conn new mysqli servername username password...

php做簡單的登入,PHP實現簡易使用者登入系統

最近剛剛看到php連線資料庫的例項,於是做了乙個簡易的使用者系統 直接上 連線資料庫 connect.php servername localhost username formbd password formbd dbname form 建立連線 conn new mysqli servernam...

delphi資料庫開發之簡易使用者登陸

首先 新增adoquery1控制項 用於執行sql語句 其次 執行sql語句 if edit1.text then begin showmessage 請輸入使用者名稱 edit1.setfocus endelse if edit2.text then begin showmessage 請輸入密碼...