1.最簡(jiǎn)單的方式
創(chuàng)新互聯(lián)建站是一家專注于成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),鹽邊網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:鹽邊等地區(qū)。鹽邊做網(wǎng)站價(jià)格咨詢:18980820575
?php$con = mysql_connect("localhost","root","");if (!$con) { die('Could not connect: ' . mysql_error()); }mysql_close($con);?
2.面向?qū)ο髆ysqli(詳細(xì)教程)
?php$mysqli = new mysqli('localhost','root','','volunteer');if (mysqli_connect_errno()){ die('Unable to connect!'). mysqli_connect_error();}?
3.pdo連接mysql(詳細(xì)教程)
?php $db = new PDO('mysql:host=localhost;dbname=test', 'root', '');try { foreach ($db-query('select * from user') as $row){ print_r($row); } $db = null; //關(guān)閉數(shù)據(jù)庫} catch (PDOException $e) { echo $e-getMessage();}?
4.ADODB連接mysql(詳細(xì)教程)
?phprequire_once './adodb5/adodb.inc.php';$conn = ADONewConnection('mysql');$conn-connect('localhost','root','','test');$conn-Execute("set names utf8");$res = $conn-Execute("select * from user");if (!$res){ echo $conn-ErrorMsg();}else{ var_dump($res);}?
//數(shù)據(jù)庫鏈接文件
$Link=mysql_connect('localhost','root','');//連接數(shù)據(jù)庫
//返回TRUE/FALSE
if($Link){
$db=mysql_select_db('oa',$Link);
//設(shè)置中文編碼格式
mysql_query('set names gbk');
if($db){
echo "數(shù)據(jù)庫選擇成功!";
}else{
echo "數(shù)據(jù)庫選擇失??!錯(cuò)誤號(hào):".mysql_error();
}
}else{
echo "連接數(shù)據(jù)庫失敗!";
}
1.action 后面的頁面沒有指定
2.if($name) 改成 if($name!=‘’)
3.把$sql 打印出來
4.頁面報(bào)錯(cuò)內(nèi)容是什么
完善上面4項(xiàng),糾錯(cuò)毫無壓力。
php鏈接mysql必備條件:
已安裝mysql數(shù)據(jù)庫;
檢查php環(huán)境是否已開啟mysql擴(kuò)展(一般情況下是開啟的);
檢查方法:a.使用phpinfo();函數(shù),看有沒有mysql項(xiàng);b.打開php.ini文件,檢查php_mysql.dll前分號(hào)是否已取掉。
php鏈接代碼如下:
?php
//設(shè)置編碼格式
header("Content-type:text/html;charset=utf-8");
//定義數(shù)據(jù)庫主機(jī)地址
$host="localhost";
//定義mysql數(shù)據(jù)庫登錄用戶名
$user="root";
//定義mysql數(shù)據(jù)庫登錄密碼
$pwd="";
//鏈接數(shù)據(jù)庫
$conn = mysql_connect($host,$user,$pwd);
//對(duì)連接進(jìn)行判斷
if(!$conn){
die("數(shù)據(jù)庫連接失??!".mysql_errno());
}else{
echo "數(shù)據(jù)庫連接成功!";
}
?