我可以像这样在mysql中一起使用where和order by吗
$results=mysql_query("SELECT `status_content`
FROM `status`
WHERE `user_id`=".$_SESSION['user_id']."
ORDER BY `status_time` DESC" );
她是我的代码,但它给了我错误
警告:mysql_fetch_array() 期望参数 1 是资源,布尔值在第 65 行的 C:\xampp\htdocs\lr\profile.php 中给出
<?php
$results=mysql_query("SELECT status_content FROM status
WHERE user_id=".$_SESSION['user_id']."
ORDER BY status_time DESC" );
while($row=mysql_fetch_array($results)) {
echo $row['status_content'];
}
?>