利用PHP連線資料庫操作使用者註冊 審核與登入頁面

2021-09-29 06:20:59 字數 1438 閱讀 1034

註冊頁面

註冊處理頁面

<?php

$uid = $_post["uid"];

$pwd = $_post["pwd"];

$name = $_post["name"];

$*** = $_post["***"];

$birthday = $_post["birthday"];

include ("lzy.class.php");

$db = new lzy();

$sql = "insert into zhuce values ('','','','','',0)";

if($db->query($sql,0))

else

登入頁面

註冊登入處理頁面

<?php

$uid = $_post["uid"];

$pwd = $_post["pwd"];

include ("lzy.class.php");

$db = new lzy();

$sql = "select * from zhuce where uid=''";

$arr = $db->query($sql);

if($arr[0][1] == $pwd && !empty($pwd))

else

}else

註冊主介面

使用者名稱姓名性別

生日操作

<?php

include("lzy.class.php");

$db = new lzy();

$sql = "select * from zhuce";

$arr = $db->query($sql);

foreach($arr as $v)";}

?>

審核通過**

<?php

$uid = $_get["uid"];

include("lzy.class.php");

$db = new lzy();

$sql = "update zhuce set isok=1 where uid=''";

if($db->query($sql,0))

else

更多專業前端知識,請上

【猿2048】www.mk2048.com

php連線資料庫

create table message id tinyint 1 not null auto increment,user varchar 25 not null,title varchar 50 not null,content tinytext not null,lastdate date n...

php連線資料庫

天貓內部優惠券 設定資料庫變數 db host localhost 資料庫主機名稱,一般都為localhost db user root 資料庫使用者帳號,根據個人情況而定 db passw 資料庫使用者密碼,根據個人情況而定 db name test 資料庫具體名稱,以剛才建立的資料庫為準 連線資...

PHP連線資料庫

php連線資料庫函式 mysql connect 開啟mysql連線 mysql select db 開啟乙個資料庫 和or die 隱藏錯誤和條件顯示 mysql connect 主機 使用者名稱 密碼 mysql select db 開啟資料庫 鏈結標示符 如果不是特宣告連線標示符,則預設為是上...