對不起,這是一個有點noobish,我不能得到一個簡單的while語句來執行,而條件是真假,如果沒有結果:執行While循環腓
// Select all the rows in the markers table
$query = "SELECT * FROM markers M, professor P
WHERE P.id = M.id;";
if($row = mysql_fetch_array($result)) {
do {
echo $row;
}
while($row = mysql_fetch_array($result));
} else {
die('No results.');
}
我用這個代碼中看到的問題是$query
永遠不會被呼叫mysql_fetch_array()
如果這個被改變?
您的代碼看起來不完整。這會引發語法錯誤。 – jjs9534 2012-02-09 15:16:00
請參閱更新。 – CodeTalk 2012-02-09 15:26:21