您好,寫一個(gè)專門用于連接數(shù)據(jù)庫的文件:db_conn.php 如下:
尖扎網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),尖扎網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為尖扎成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的尖扎做網(wǎng)站的公司定做!
?php
define("DBSERVER","localhost");
define("USER","root");
define("PASSWORD","your password");
define("DB","dbName");
function connectMySQL()
{
@mysql_pconnect(DBSERVER,USER,PASSWORD) or die("服務(wù)器繁忙,請(qǐng)刷新后再嘗試建立連接");
@mysql_select_db(DB) or die("數(shù)據(jù)庫正在連接中。。。");
}
connectMySQL();
mysql_query("set names utf8");
?
然后在需要使用到連接數(shù)據(jù)庫的網(wǎng)頁加入:
require("db_conn.php");
首先登陸要用用戶名,密碼等等信息,這些都要存在數(shù)據(jù)庫中,這樣才能用戶登陸時(shí)驗(yàn)證是否能夠登陸,
1.創(chuàng)建一個(gè)數(shù)據(jù)庫,建表例表一(用戶名,密碼)等等。。
1.設(shè)計(jì)頁面代碼包含連接數(shù)據(jù)庫,數(shù)據(jù)庫操作代碼等等(加入用戶,刪除用戶。。)
2.代碼中包含用戶登陸輸入
用戶名,密碼
3.打開數(shù)據(jù)庫表,查找是否有該用戶名,如果存在,密碼是否正確,不正確byebye
(請(qǐng)看java書本
數(shù)據(jù)庫內(nèi)容,包含建立數(shù)據(jù)庫,添加刪除基本操作)
創(chuàng)建conn.php,連接數(shù)據(jù)庫。
$dns = 'mysql:host=127.0.0.1;dbname=test';
$username = 'root';
$password = 'root';
// 1.連接數(shù)據(jù)庫,創(chuàng)建PDO對(duì)象
$pdo = new PDO($dns,$username,$password);
創(chuàng)建login.html,登陸頁面。
用戶名
密 碼
創(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ù)庫
$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ù)庫是否有對(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頁面
exit;
}else{
echo "用戶名或密碼錯(cuò)誤";
echo "
setTimeout(function(){window.location.href='login.html';},1000);
";//如果錯(cuò)誤使用js 1秒后跳轉(zhuǎn)到登錄頁面重試;
}
}else{//如果用戶名或密碼有空
echo "表單填寫不完整";
echo "
setTimeout(function(){window.location.href='login.html';},1000);
";
//如果錯(cuò)誤使用js 1秒后跳轉(zhuǎn)到登錄頁面重試;
}
$pdo = null;
創(chuàng)建signup.html,注冊(cè)頁面
用戶名:
密 碼:
創(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ù)庫
$sql="insert into user(id,username,password) values (null,'$name','$pwd')";//向數(shù)據(jù)庫插入表單傳來的值的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ù)庫
算了
給你這個(gè),我在PHP官方網(wǎng)站上找的例子修改了一下:顯示完整數(shù)據(jù)表
----------
?php
// 連接,選擇數(shù)據(jù)庫
$link = ("數(shù)據(jù)庫鏈接","數(shù)據(jù)庫用戶名","密碼")
or die('數(shù)據(jù)庫死翹翹了:' . mysql_error());
echo 'Connected successfully';
mysql_select_db('這里確實(shí)是填數(shù)據(jù)庫名') or die('數(shù)據(jù)表壞掉了,快打120吧...');
// 執(zhí)行 SQL 查詢
$query = 'SELECT * FROM 數(shù)據(jù)表';
$result = mysql_query($query) or die('查詢錯(cuò)誤:' . mysql_error());
// 用 HTML 顯示結(jié)果
echo "table\n";
while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "\ttr\n";
foreach ($line as $col_value) {
echo "\t\ttd$col_value/td\n";
}
echo "\t/tr\n";
}
echo "/table\n";
// 釋放結(jié)果集
mysql_free_result($result);
// 關(guān)閉連接
mysql_close($link);
?
----------
ps:你是初學(xué)PHP吧~~
平時(shí)多看上的手冊(cè)吧,最好的導(dǎo)師就是手冊(cè)~!
出現(xiàn)此問題的原因是由于在.htaccess文件中添加了下面兩行:
AddHandler application/x-httpd-php53 .php
AddHandler application/x-httpd-php54 .php
在這些行的開始位置插入#注釋掉之后就可以正常使用了。