数据库查询记录php 多行多列显示

前端之家收集整理的这篇文章主要介绍了数据库查询记录php 多行多列显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="7665" class="copybut" id="copybut7665" onclick="doCopy('code7665')"> 代码如下:

<div class="codebody" id="code7665">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
<html xmlns="http://www.w3.org/1999/xhtml"&gt;


<a href="https://www.jb51.cc/tag/shujuku/" target="_blank" class="keywords">数据库</a><a href="https://www.jb51.cc/tag/chaxun/" target="_blank" class="keywords">查询</a>记录多行多列<a href="https://www.jb51.cc/tag/xianshi/" target="_blank" class="keywords">显示</a>

<?PHP
require_once 'include/config.PHP';
$result=MysqL_query("select * from guestbook");
$i=5;
$j=0;
?>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<?PHP
while($row=MysqL_fetch_array($result))
{
$j++;
?>
<td><?=$row["username"]?></td>
<?PHP
if($j==$i)
{
$j=0;
echo "</tr>";
echo "<tr>";
}
}
for($k=$i-$j;$k>0;$k--)
{
echo "<td></td>";
}
?>
</tr>
</table>


原文链接:https://www.f2er.com/php/29080.html

猜你在找的PHP相关文章