真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

注冊(cè)鏈接數(shù)據(jù)庫(kù)PHP,注冊(cè)連接數(shù)據(jù)庫(kù)

php,把注冊(cè)代碼輸入到數(shù)據(jù)庫(kù)中

建立index.php

專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)安寧免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了成百上千企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

輸入:

form action='reg.php' method='method'

用戶名:input type='text' name='uname' /br

密碼:input type='password' name='upassword' /br

input type='注冊(cè)' value='submit' /

/form

保存退出

在相同目錄下建立regist.php

輸入:

?php

$username=$_POST[uname]; //通過(guò)POST方法獲得提交數(shù)據(jù),uname對(duì)應(yīng)index.php中的uname;upassword一樣

$userpassword=$_POST[upassword];

mysql_connect('localhost','root','數(shù)據(jù)庫(kù)密碼); //鏈接數(shù)據(jù)庫(kù)

mysql_select_db('數(shù)據(jù)庫(kù)名'); //選擇數(shù)據(jù)庫(kù)

$sql = "insert into user(uname,upassword) values"('$username',$userpassword); //插入數(shù)據(jù)的SQL字符串

if(mysql_query($sql)){ //mysql_query($sql)執(zhí)行插入語(yǔ)句,if為判斷是否插入成功

}else{

echo '注冊(cè)失敗';

}

?

php登錄頁(yè)面完整代碼連接數(shù)據(jù)庫(kù)

創(chuàng)建conn.php,連接數(shù)據(jù)庫(kù)。

$dns = 'mysql:host=127.0.0.1;dbname=test';

$username = 'root';

$password = 'root';

// 1.連接數(shù)據(jù)庫(kù),創(chuàng)建PDO對(duì)象

$pdo = new PDO($dns,$username,$password);

創(chuàng)建login.html,登陸頁(yè)面。

用戶名

密 碼

創(chuàng)建login.php,驗(yàn)證賬號(hào)密碼。

header("Content-Type: text/html; charset=utf8");

if(!isset($_POST["submit"])){

exit("錯(cuò)誤執(zhí)行");

}//檢測(cè)是否有submit操作

include('conn.php');//鏈接數(shù)據(jù)庫(kù)

$name = $_POST['name'];//post獲得用戶名表單值

$pwd = sha1($_POST['password']);//post獲得用戶密碼單值

if ($name $pwd){//如果用戶名和密碼都不為空

$sql = "select * from user where username = '$name' and password='$pwd'";//檢測(cè)數(shù)據(jù)庫(kù)是否有對(duì)應(yīng)的username和password的sql

$stmt = $pdo-prepare($sql);

$stmt-execute();

if($stmt-fetch(PDO::FETCH_BOUND)){//0 false 1 true

header("refresh:0;url=welcome.html");//如果成功跳轉(zhuǎn)至welcome.html頁(yè)面

exit;

}else{

echo "用戶名或密碼錯(cuò)誤";

echo "

setTimeout(function(){window.location.href='login.html';},1000);

";//如果錯(cuò)誤使用js 1秒后跳轉(zhuǎn)到登錄頁(yè)面重試;

}

}else{//如果用戶名或密碼有空

echo "表單填寫不完整";

echo "

setTimeout(function(){window.location.href='login.html';},1000);

";

//如果錯(cuò)誤使用js 1秒后跳轉(zhuǎn)到登錄頁(yè)面重試;

}

$pdo = null;

創(chuàng)建signup.html,注冊(cè)頁(yè)面

用戶名:

密 碼:

創(chuàng)建signup.php

header("Content-Type: text/html; charset=utf8");

if(!isset($_POST['submit'])){

exit("錯(cuò)誤執(zhí)行");

}//判斷是否有submit操作

$name=$_POST['name'];//post獲取表單里的name

$pwd = sha1($_POST['password']);//post獲取表單里的password

include('conn.php');//鏈接數(shù)據(jù)庫(kù)

$sql="insert into user(id,username,password) values (null,'$name','$pwd')";//向數(shù)據(jù)庫(kù)插入表單傳來(lái)的值的sql

$stmt = $pdo-prepare($sql);

$stmt-execute();

$stmt-fetch(PDO::FETCH_BOUND);

if (!$stmt){

die('Error: ' . $stmt-getMessage());//如果sql執(zhí)行失敗輸出錯(cuò)誤

}else{

echo "注冊(cè)成功";//成功輸出注冊(cè)成功

}

$pdo = null;//關(guān)閉數(shù)據(jù)庫(kù)

為什么 我注冊(cè)php 連接到數(shù)據(jù)庫(kù)了 怎么還沒寫進(jìn)去啊 一直是 注冊(cè)失敗?。∠旅媸谴a?

你的sql有問(wèn)題啊,你這樣sql不解析你的變量

$sql?=?'insert?into?user?valuse(105,'."'".$name."'".','."'".$password."'".')';

考慮到你的用戶名字段類型是字符串,要加引號(hào),密碼也是

你這個(gè)不是面向?qū)ο螅蝸?lái)的$mysqli-query? 應(yīng)該是$mysqli_query($sql)吧


新聞標(biāo)題:注冊(cè)鏈接數(shù)據(jù)庫(kù)PHP,注冊(cè)連接數(shù)據(jù)庫(kù)
文章路徑:http://weahome.cn/article/hdipdo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部