0

所以我一直在研究下面的代码,无论我做什么,它都不会显示超过当前数据库 *=(来自 URL http://www.example.com/blogs/1

我希望它显示最后两个或我放在他的首要论点中的许多。

我尝试将“来自博客的故事 id”与“来自博客的 *”两者都工作,但我想要做的也没有。我有两个博客条目,它只返回博客条目 1。

<?php

$sql2="select top 2 storyid from Blogs order by storyid desc";  

//echo "$sql<br/>"; 

$results2=mysql_query($sql,$connection); 

while ($result=mysql_fetch_assoc($results2)){ 

     $title=$result["Title"];  

     $storyid=$result["storyid"];

     $photo2=$result["Photo2"];

     $date=$result["Date"];

     ?>




                      <li>

<img src="/images/<?php echo $photo2; ?>" alt="Blog link" />

                          <div class="blog-details">

     <h4><a href="/blogs/<?php echo "$storyid"; ?>"><?php echo "$title"; ?></a></h4>

     <p><?php print date('M d Y', strtotime($date)); ?> - <a href="#">2 Comments</a></p>

<li>

<img src="/images/<?php echo $photo2; ?>" alt="Blog link" />

                          <div class="blog-details">

     <h4><a href="/blogs/<?php echo "$storyid"; ?>"><?php echo "$title"; ?></a></h4>

     <p><?php print date('M d Y', strtotime($date)); ?> - <a href="#">2 Comments</a></p>

     <?php

}

?>
4

2 回答 2

2

对于 MySQL,您必须使用 LIMIT 而不是 TOP。看看这是否有效。

于 2012-08-18T18:56:10.137 回答
1

尝试修改您的查询以使用限制而不是顶部

SELECT storyid FROM Blogs ORDER BY storyid DESC LIMIT 0,2
于 2012-08-18T18:57:39.640 回答