時(shí)間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
連接
//下面使用了函數(shù)庫mysqli,所以需要將php.ini文件中的extension=php.mysqli 打開
@ $db = new mysqli('localhost', 'root', 'tograce', 'books');
//以上代碼實(shí)例化了mysqli類并且創(chuàng)建了到主機(jī)'localhost'的連接,該連接使用的用戶名為和密碼分別是:root,tograce,同時(shí)連接上books數(shù)據(jù)庫
if (mysqli_connect_errno())
{
echo 'Error: Could not connect to database. Please try again later.';
exit;
}
else{echo "gong xi,Connected successfully";}
$query = "select * from books";
$result = $db->query($query);
$num_results = $result->num_rows;
echo '
Number of books found: '.$num_results.'
';插入數(shù)據(jù)
摘自
關(guān)鍵詞標(biāo)簽:PHP,MYSQL數(shù)據(jù)庫
相關(guān)閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具
人氣排行 詳解ucenter原理及第三方應(yīng)用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運(yùn)行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實(shí)例(PHP采集)