2012-04-09 55 views
0

我正在開發我自己的論壇,除了嘗試使用ORDER BY date_time時,所有的工作都是完美的。我的表名是正確的,所有的字段名稱都是正確的!當我將ORDER BY date_time添加到查詢中時發生PHP錯誤,我無法理解爲什麼,因爲它在網站上的其他地方完全正常工作。碼和誤差都低於:PHP和MySQL ORDER BY date_time錯誤

// query responses 
$sqlresponses = mysql_query("SELECT * FROM forum_replb ORDER BY date_time WHERE post_id='$disc_id'"); 
$responseList = ""; 
$numRows = mysql_num_rows($sqlresponses); 
if ($numRows < 1) { 
    $responseList = "There are currently no responses to this discussion/post yet! Add one above."; 
} else { 
    while($row = mysql_fetch_array($sqlresponses)){ 
     $response_author_id = $row["author_id"]; 
     $reply_body = $row["reply_body"]; 
     $date_time = $row["date_time"]; 
      $date_time = strftime("%b %d, %Y", strtotime($date_time)); 
     $responseList .= '<div id="sub_response_module"><p>' . $reply_body . ' - 
     <a href="../profile.php?id=' . $response_author_id . '">' . $response_author_id . '</a> 
     | <i>' . $date_time . '</i></p></div>'; 
    } 
} 

錯誤:

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/public_html/lb/forum/post.php on line 49 

只是爲了澄清,線49是$ = numRows行mysql_num_rows($ sqlresponses);.

+0

使用['mysql_error'](http://php.net/manual/en/function.mysql-error.php)獲取實際的錯誤信息。如果你的查詢失敗了,'mysql_query'將返回'false'而不是'resource'。這裏的問題是你忽略了這種情況,無論如何都要在$ sqlresoonse上調用'mysql_num_rows'。有關示例,請參閱手冊。 – Basti 2012-04-09 10:10:32

回答

3

你的ORDER BY子句必須在WHERE子句後:

SELECT * FROM forum_replb WHERE post_id='$disc_id' ORDER BY date_time 

也請注意,功能mysql_家庭已被棄用。你應該使用mysqli_函數,或者可能更好的PDO。

2

你的查詢語法錯誤 - 你應該把ORDER BY放在WHERE之後。

mysql_query("SELECT * FROM forum_replb WHERE post_id='$disc_id' ORDER BY date_time "); 
+0

你是對的,我確實有語法錯誤。我最好醒來!多謝你們! – James 2012-04-09 10:11:19