我在mysql中有如下表:
| sq | date | title | description |
-----------------------------------
| 10 | 10-06| xxxx | blah blah |
| 09 | 10-06| xxxx | blah blah |
| 08 | 10-06| xxxx | blah blah |
| 07 | 10-06| xxxx | blah blah |
现在我想使用 php 按 sq(squence) 的降序在屏幕上显示它们。
我使用了以下代码,但显示错误:
$result = mysql_query("SELECT * FROM posts WHERE (SELECT MAX(sn) FROM posts)");
echo('<ul class="news">');
while($row=mysql_fetch_array($result)) {
$date=$row["date"];
$title=$row["title"];
$description=$row["description"];
echo "<li><strong>$date</strong><h4><a href='#'>$lastname</a></h4>$description</li>";
}
echo('</ul>');
错误信息:
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\final\index.php on line 99
Call Stack
并且一次三个带有链接以向其他人展示。
提前致谢。