2011-02-09 89 views

回答

3

如果你剛開開始。如果您使用任何類型的框架,請查看該框架的數據庫文檔。

3

使用此查詢得到的記錄數在表(例如命名爲「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