0
如何打印mysql表中的記錄數?在表中打印記錄數量?
如何打印mysql表中的記錄數?在表中打印記錄數量?
如果你剛開開始。如果您使用任何類型的框架,請查看該框架的數據庫文檔。
使用此查詢得到的記錄數在表(例如命名爲「TBL」)從PHP: mysql_result
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
if (!mysql_select_db('database_name')) {
die('Could not select database: ' . mysql_error());
}
$result = mysql_query('SELECT COUNT(*) FROM myTable');
if (!$result) {
die('Could not query:' . mysql_error());
}
$rowCount = mysql_result($result, 0); // get the count
echo $rowCount; // echo the count
mysql_close($link);
?>
退房的PHP mysql functions修改
select count(*) as CountRecords from tbl
print?打印到哪裏? – 2011-02-09 02:55:42