gpt4 book ai didi

php - 仅显示 15 个结果

转载 作者:行者123 更新时间:2023-11-29 06:09:50 25 4
gpt4 key购买 nike

我的成员(member)列表出现问题。它显示了每个用户名,但我希望它每行只显示 15 个。

代码:

    <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="23%"><em><strong>Username</strong></em></td>
</tr>
<?
$sql = mysql_query("select * from usr_users");
while($m = mysql_fetch_array($sql))
{ ?>
<tr>
<td width="23%"><div style="float: left;" onMouseover="ddrivetip('<em><? echo("$m[username]");?></em> <br /> <b>Rank:</b> <? echo("$m[rankerslevel]");?><br /> <b>Bits:</b> <? echo("$m[credits]");?><br /> <b>Score:</b> <? echo("$m[points]");?><br /> <b>Mood:</b> <? echo("$m[usrstatus]");?><br /> <b>ID:</b> <? echo("$m[id]");?><br /> <b>Sex:</b> <? echo("$m[sexmalefemale]");?><br /> <b>Country:</b> <? echo("$m[countrywhere]");?><br />','white', 100)";
onMouseout="hideddrivetip()"><img src="/bolt.png" alt="member_icon"/> <a href="memb.php?user=<? echo("$m[username]");?>"><font color="<? echo("$m[usercolour]");?>"><? echo("$m[username]");?></font></a></td></div>
<? } ?>

提前致谢!

最佳答案

使用LIMIT子句。这是用法:

LIMIT [offset,] rows

示例:

SELECT * from usr_users LIMIT 0, 10

此查询将检索 1-10 行(从 0 到 10)。

SELECT * from usr_users LIMIT 10, 10

此查询将检索 11-19 行。

如果您想获取具有特定 ID 的行,请使用 IN 语句:

SELECT * from usr_users WHERE id IN (1,2,3)

另请阅读:http://dev.mysql.com/doc/refman/5.0/en/select.html

如果你想学习如何进行分页,请看这个主题:http://www.codediesel.com/php/simple-pagination-in-php/

关于php - 仅显示 15 个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9652151/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com