所以我在使用空值的驗證while語句代碼while else statement? PHP
while (!$rs->EOF){
echo "<tr><td>".$rs->Fields("Branch")."</td>";
$rs->movenext();
}
$rs->Close();
?>
我想實現是有一個「其他」的聲明,雖然我的不能使用where語句知道。哪一個相當於哪裏的聲明?
while (!$rs->EOF){
echo "<tr><td>".$rs->Fields("Branch")."</td>";
$rs->movenext();
}
if(!$rs->EOF)
{
echo "<tr><td> Branch is missing</td>";
}
$rs->Close();
?>
我試圖用「如果」我沒有得到任何錯誤,雖然它沒有打印的內容我想打印
*當你想觸發這個'else'條件嗎?目前它和你的'while'條件相同,沒有多大意義。請用文字描述邏輯。 – deceze 2013-02-19 07:11:09
哪裏是where語句? – 2013-02-19 07:11:52
上面的where語句在哪裏? – itachi 2013-02-19 07:12:29