可以在刷新时从php中显示数据库中的随机ID吗?

时间:2015-07-18 12:33:47

标签: php mysql

所以我有一个想法,我希望在客户搜索词下显示其他ID。

我想要的基本想法是从数据库(ids)中显示随机的5个其他项目。

这是我尝试这样做的:

<?php 
echo'<table width="200" border="0">
  <br>Other Items:&nbsp;<br></td><marquee behavior="scroll" direction="left">

<img src="http://rs-list.com/tools/items/'.(file_exists('items/'.$row['id'].'.png') ? $row['id'] : 0).'.png" class="img-responsive img-rounded" alt="'.$row['name'].'"">
<p><a href="/html/codes/scrolling_images.cfm">'.$row['name'].'</a>.</p></marquee>';
?>

但当然所有这一切都是回应id的值,在这种情况下是241.(照片:http://prntscr.com/7u40nm

如何回应刷新后随机选择的其他5个ID的信息?

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

使用此Sql查询

SELECT column FROM table
ORDER BY RAND()
LIMIT 5