我有一個非常簡單的佈局將會和我的生活,我不能明白,爲什麼這個沒有返回值:MySQL查詢心不是返回結果
<?php
// Gets A List Of Comic Arcs
$result = mysql_query("SELECT * FROM ".$db_tbl_comics." GROUP BY ".$db_fld_comics_arc." ORDER BY ".$db_fld_comics_date." DESC LIMIT 20");
while ($comic = mysql_fetch_array($result)) {
// Now Go Back And Count Issues For Each Comic Arc Above
$result22 = mysql_query("SELECT * FROM ".$db_tbl_comics." WHERE ".$db_fld_comics_arc."=".$comic[$db_fld_comics_arc]);
$total_issues = mysql_num_rows($result22);
echo $total_issues;
}
?>
沒有其他查詢refered爲$ result22。
$ comic []已在上一個查詢中定義。
echo mysql_error($result22);
返回沒有錯誤。
讓我知道你是否需要任何其他信息。
蟎幫助,如果你回顯錯誤http://php.net/manual/en/function.mysql-error.php – 1ftw1 2011-12-20 01:05:06
我做了沒有錯誤,抱歉忘了提及。 – rackemup420 2011-12-20 01:07:39
您是否嘗試過「回顯」查詢並直接在數據庫中進行測試以查看它是否實際返回了某些內容?數據庫中的 – 2011-12-20 01:10:30