php連接mysql數(shù)據(jù)庫代碼
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 19:02:54
php連接mysql數(shù)據(jù)庫代碼
php連接mysql數(shù)據(jù)庫代碼: 代碼如下:<php mysql_connect(localhost, root,1981427) //連接位于localhost的服務(wù)器,用戶名為root > 代碼如下:<php @mysql_connect(localhost, root,1981427) or die(數(shù)據(jù)庫服務(wù)器
導(dǎo)讀php連接mysql數(shù)據(jù)庫代碼: 代碼如下:<php mysql_connect(localhost, root,1981427) //連接位于localhost的服務(wù)器,用戶名為root > 代碼如下:<php @mysql_connect(localhost, root,1981427) or die(數(shù)據(jù)庫服務(wù)器

代碼如下:
<?php
mysql_connect("localhost", "root","1981427") //連接位于localhost的服務(wù)器,用戶名為root
?>
代碼如下:
<?php
@mysql_connect("localhost", "root","1981427")
or die("數(shù)據(jù)庫服務(wù)器連接失敗");
?>
代碼如下:
<?php
@mysql_connect("localhost", "root","1981427") //選擇數(shù)據(jù)庫之前需要先連接數(shù)據(jù)庫服務(wù)器
or die("數(shù)據(jù)庫服務(wù)器連接失敗");
@mysql_select_db("test") //選擇數(shù)據(jù)庫mydb
or die("數(shù)據(jù)庫不存在或不可用");
?>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
php連接mysql數(shù)據(jù)庫代碼
php連接mysql數(shù)據(jù)庫代碼: 代碼如下:<php mysql_connect(localhost, root,1981427) //連接位于localhost的服務(wù)器,用戶名為root > 代碼如下:<php @mysql_connect(localhost, root,1981427) or die(數(shù)據(jù)庫服務(wù)器