2
這可能看起來很簡單,但我一直在得到各種錯誤,這取決於我如何處理不返回任何內容的查詢。
$query = "SELECT * FROM messages WHERE id > ".$messageId;
$result =mysql_query($query);
$time = time();
while(time()-$time<60 && $result==false)
{
$result = mysql_query($query);
}
if(result != false)
//Encode response
else
//return nothing
如何檢查我的mysql_query()是否返回任何內容?
看起來像你要DOS攻擊你自己的數據庫 – 2010-04-10 17:12:21