登錄與注冊肯定要從數(shù)據(jù)庫讀取數(shù)據(jù)。
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站建設(shè)、網(wǎng)站制作與策劃設(shè)計,大田網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:大田等地區(qū)。大田做網(wǎng)站價格咨詢:13518219792
如果PHP直接生成這張表,那這個php文件只能執(zhí)行一次。還是先建表的好
====================================================================?php$server = "localhost"; $username = "root"; $password = ""; $database = "myabc"; $ranks = array( 1="newbie", 2="new member", 3="member", 4="high member", 5="very high member", 6="supreme member", 7="ultra member", 8="godlike member", 9="god member", 10="low god", 11="medium god", 12="high god", 13="very high god", 14="supreme god", 15="ultra god", 16="perfect");$couldNotOpenDatabase = "Could not open databaseBR\n please check your settings in config.php"; $couldNotConnectMysql="Could not connect Mysql!"; $conn=mysql_connect($server,$username,$password) or die ($couldNotConnectMysql); if (mysql_select_db($database,$conn)) {//數(shù)據(jù)庫存在,做相應(yīng)操作}else{//數(shù)據(jù)庫不存在,創(chuàng)建一個,并做相應(yīng)操作
首先得到提交的數(shù)據(jù)
鏈接數(shù)據(jù)庫,查詢數(shù)據(jù)庫,查詢username 和pwd
提交的username 和 pwd? 跟數(shù)據(jù)庫查詢的username 和pwd做對比,
都相等那就是登陸成功
?php
mysql_connect('localhost','root','123');
mysql_select_db('lx');
mysql_query("SET?CHARACTER?SET?utf8");
mysql_query("SET?NAMES?utf8");
//數(shù)據(jù)庫lx?表user??字段id?username??pwd
//用md5加密,可以自己試試????
if(isset($_POST['user'])$_POST['tijiao']?==?'success'){
$query?=?mysql_query("select?pwd?from?user?where?username?=?'".$_POST['user']."'");
$num?=?mysql_num_rows($query);
if($num??0?){
while($info?=?mysql_fetch_array($query)){
if($info['pwd']?==?md5($_POST['pwd'])){
echo?'登陸成功';
}else{
echo?'登陸失敗';????
}
}
}else{
echo?'登陸失敗';
}
}
?
form?action=""?method="get"/
table?border="0"?cellspacing="0"?cellpadding="0"?
tr
td?class="fieldKey"?width="30%"用戶名:/td
td?class="fieldValue"?width="100%"input?type="text"?name="user"?//td
/tr
trtd?height="10"/td/tr
tr
td?class="fieldKey"密碼:/td
td?class="fieldValue"input?type="password"?name="pwd"?//td
/tr
/table
input?type="hidden"?name="tijiao"?value="success"?/
input?type="submit"?value="登陸"/
/form
在php文件中嵌入html代碼(包含表單,做好表單驗(yàn)證),提交到一個表單處理文件(php文件),處理文件里查詢數(shù)據(jù)庫,和用戶提交的用戶名,密碼匹配,異常則登錄失敗,正常則登錄成功,跳轉(zhuǎn)頁面(重定向或轉(zhuǎn)發(fā))。注冊同理做好html頁面,提交到注冊處理頁,先校驗(yàn)數(shù)據(jù)庫是否存在用戶名,有則返回注冊頁,提示注冊失敗,無則在數(shù)據(jù)庫插入用戶注冊表單的信息。
是的,注冊和登陸用的是一個數(shù)據(jù)庫。相當(dāng)于你在一個保險柜放一個東西,在別的保險柜是拿不到的。(中大型項(xiàng)目除外)
當(dāng)前文章:php注冊登錄數(shù)據(jù)表 php實(shí)現(xiàn)用戶登錄注冊
當(dāng)前URL:http://www.rwnh.cn/article6/doohjig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、網(wǎng)站制作、企業(yè)網(wǎng)站制作、標(biāo)簽優(yōu)化、網(wǎng)站設(shè)計公司、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)