欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php查詢(xún)mysql數(shù)據(jù)庫(kù)并將結(jié)果保存到數(shù)組的方法

 更新時(shí)間:2015年03月18日 16:20:22   作者:work24  
這篇文章主要介紹了php查詢(xún)mysql數(shù)據(jù)庫(kù)并將結(jié)果保存到數(shù)組的方法,實(shí)例分析了php使用mysql_fetch_assoc查詢(xún)數(shù)據(jù)庫(kù)的技巧,需要的朋友可以參考下

本文實(shí)例講述了php查詢(xún)mysql數(shù)據(jù)庫(kù)并將結(jié)果保存到數(shù)組的方法。分享給大家供大家參考。具體分析如下:

這里主要用到了mysql_fetch_assoc函數(shù)

mysql_fetch_assoc語(yǔ)法如下: 

array mysql_fetch_assoc (resource $Result_Set)

范例代碼如下:

<?php
$UserName = 'abc';
$Password = '1234';
$DbHandle = mysql_connect ('localhost', $UserName, $Password);
if (!$DbHandle) {
 die 'No database connection could be established.';
}
$DBName = 'w3db;
if (!mysql_select_db ($DBName, $DbHandle)) {
 die 'Database could not be selected.';
}
$Query = "SELECT ISBN, Title, Author FROM articles";
$articles = mysql_query ($Query, $DbHandle));
while ($Row = mysql_fetch_assoc ($articles)) {
 echo "ISBN = $Row['ISBN']<br />\n";
 echo "Title = $Row['Title']<br />\n";
 echo "Author = $Row['Author']<br />\n";
}
?>

希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論