主要用到了mysql_fetch_assoc函数
mysql_fetch_assoc语法如下:
?
1
array mysql_fetch_assoc (resource $Result_Set)
范例代码如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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"
}
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)