當前位置:首頁 » 參考文獻 » php資料庫連接配置

php資料庫連接配置

發布時間: 2021-03-12 06:15:57

① PHP如何連接MYSQL資料庫

php.ini改了嗎?
最好把mysql卸掉重新裝下
我的有時候也是的

② 伺服器怎麼設置,才能讓php連接資料庫

你是如何判斷連不上資料庫的,是有報錯嗎,有報錯就把報錯貼出來看下

③ php連接 mysql 資料庫如何添加一個公共的配置文件

php面向對象文件名DB.class.php

<?php
header("content-type:text/html;charset=utf-8");
classDB{
public$db_host;//localhost
public$db_user;//用戶名
public$db_pwd;//密碼
public$db_name;//資料庫名
public$links;//鏈接名稱
//構造方法的參數和屬性名字一致,但是含義不同
function__construct($db_host,$db_user,$db_pwd,$db_name){
$this->db_host=db_host;
$this->db_user=db_user;
$this->db_pwd=db_pwd;
$this->db_name=db_name;
//鏈接資料庫代碼
$this->links=@mysql_connect($db_host,$db_user,$db_pwd)ordie("資料庫鏈接失敗");
//echo$this->links;列印是資源
mysql_query("setnamesutf8");
mysql_select_db($db_name,$this->links);

}
functionquery($sql){//執行各種sql,inertupdatedelete執行,如果執行select返回結果集
returnmysql_query($sql);
}
functionnumRows($sql){//返回select的記錄數
$result=$this->query($sql);
$count=mysql_num_rows($result);
return$count;
}
functiongetOne($sql){//得到一條記錄的一維數組
$result=$this->query($sql);
$arr=mysql_fetch_assoc($result);
return$arr;
}
functiongetAll($sql){//得到多條記錄的二維數組
$result=$this->query($sql);
$rows=array();
while($rs=mysql_fetch_assoc($result)){
$rows[]=$rs;
}
return$rows;
}
function__destruct(){
$this->db_host=db_host;
$this->db_user=db_user;
$this->db_pwd=db_pwd;
$this->db_name=db_name;
}
}

$db=newDB("localhost","root","","car");
//$sql="insertintocategory(categoryName)values('常熟seo')";
//$db->query($sql);

//返回select的記錄數
//$sql="select*fromcategory";
//$count=$db->numRows($sql);
//echo$count;

//得到一條記錄的一維數組
//$sql="select*fromcategorywherecategoryId=1";
//$arr=$db->getOne($sql);
//print_r($arr);

//得到多條記錄的二維數組
$sql="select*fromcategory";
$rs=$db->getAll($sql);
print_r($rs);


?>

創建一個資料庫大類

④ 有個php網站源碼,怎麼配置連接資料庫在伺服器端怎麼建資料庫

你這是用的阿里雲的mysql資料庫? 如果是在host填上阿里雲給你的資料庫地址,username 填阿里回雲給你的用戶名 password填密碼答。別的不動。
自己建 資料庫 看你這路徑好像是Windows系統這個直接下載個mysql安裝上。
懶人直接用面板得了,比如寶塔 西部數碼助手一類的,環境自己安裝好了。

⑤ 怎麼配置PHP與MySQL的連接啊

到php官方網站下載最新的php5.3.8的安裝文件[.msi],注意不是壓縮文件,安裝文件會自動配置環境,壓縮包安裝不方便

⑥ php與資料庫連接

$sqlstr=INSERT INTO table(JULI, SHIJIAN) VALUES ('$distance','$ration');

然後echo $sqlstr; 看看輸出的是不是你想要執行的語句,要麼變數不對,要麼構造語句時格式錯誤.

⑦ PHP 連接SQL資料庫的設置

登錄那個頁面 伺服器選擇那 弄錯了吧 我的配置是編輯 config.ini.php 文件

大概在 20行左右 把 $i = 0 改成 $i = 1 並且刪除 $i++

復制 :$cfg['Servers'][$i]['auth_type'] = 'cookie'; 到 $cfg['Servers'][$i]['AllowNoPassword'] = true; 作為每段伺服器的選擇地址 記得$i 要從1開始 以此 2 3 4 ……

⑧ PHP資料庫連接

________profile.php____________
<?php
$dbhost = '';//資料庫主機名
$dbuser = '';//資料庫用戶名
$dbpassword = '';//資料庫密碼
$dbname = '';//資料庫名
$tbname = '';//數據表名

$uid = intval($_GET['id']);
mysql_connect($dbhost,$dbuser,$dbpassword);
mysql_select_db('$dbname');
$sql = "SELECT * FROM `" . $tbname . "` WHERE `uid`='" . $uid. "'";
$result = mysql_query($sql);
$profile = mysql_fetch_array($result);
?>
<table>
<tr>
<th>序號</th>
<td><?php echo $profile['uid'];?></td>
</tr>
<tr>
<th>性別</th>
<td><?php echo $profile['sex'];?></td>
</tr>
<tr>
<th>郵箱</th>
<td><?php echo $profile['email'];?></td>
</tr>
</table>
__________end of profile.php________________

大概這樣,不懂請補充。

⑨ config.php 資料庫配置如何修改

$db_host = "資料庫地址:3306";
$db_name = "數據表名";
$db_user = "資料庫用戶名";
$db_pass = "資料庫密碼";
改這幾個就可以了啊

熱點內容
塗鴉論文 發布:2021-03-31 13:04:48 瀏覽:698
手機資料庫應用 發布:2021-03-31 13:04:28 瀏覽:353
版面217 發布:2021-03-31 13:04:18 瀏覽:587
知網不查的資源 發布:2021-03-31 13:03:43 瀏覽:713
基金贖回參考 發布:2021-03-31 13:02:08 瀏覽:489
懸疑故事範文 發布:2021-03-31 13:02:07 瀏覽:87
做簡單的自我介紹範文 發布:2021-03-31 13:01:48 瀏覽:537
戰略地圖參考 發布:2021-03-31 13:01:09 瀏覽:463
收支模板 發布:2021-03-31 13:00:43 瀏覽:17
電氣學術會議 發布:2021-03-31 13:00:32 瀏覽:731