请指点一下这个循环语句如何让它执行数据5个后自动换行

$totalRows_Recordset1=mysql_num_rows($Recordset1);?><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXH... $totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
body {
background-color: #FFF;
margin-left: 1px;
margin-top: 1px;
margin-right: 1px;
margin-bottom: 1px;
}
body,td,th {
color: #F00;
}
#jk {
font-weight: 200;
width: 200px;
}
#jk div #jk {
width: 200px;
}
</style>
</head><body>

<table width="200" border="0" cellpadding="0">
<tr>

<?php
while ($row_ji = mysql_fetch_assoc($ji)) {

?>
<td><table width="200" border="0" cellpadding="0">
<tr>
<td>姓名:<?php echo $row_ji['groupname']; ?></td>
</tr>
<tr>
<td>行业:<?php echo $row_ji['src']; ?></td>
</tr>
<tr>
<td>电话:<?php echo $row_ji['url']; ?></td>
</tr>
</table></td>
<?php
} ?>
</tr>
</table></body>
</html>
<?php
mysql_free_result($ji);mysql_free_result($Recordset1);
?>
展开
 我来答
阳光上的桥
2015-08-04 · 知道合伙人软件行家
阳光上的桥
知道合伙人软件行家
采纳数:21423 获赞数:65813
网盘是个好东东,可以对话和传文件

向TA提问 私信TA
展开全部

    我先把你的循环语句复制一遍:

 <?php 
 while ($row_ji = mysql_fetch_assoc($ji)) {  
    ?>
     <td><table width="200" border="0" cellpadding="0">
        <tr>
          <td>姓名:<?php echo $row_ji['groupname']; ?></td>
        </tr>
        <tr>
          <td>行业:<?php echo $row_ji['src']; ?></td>
        </tr>
        <tr>
          <td>电话:<?php echo $row_ji['url']; ?></td>
        </tr>
      </table></td>
      <?php
 } ?>

你的循环体反复输出<Td><table>.....</table></td>,也就是所有的内容都在一行上,需要5个换行是可以实现的,修改方法是在循环里面输出<tr>,并增加计数器,满5个就输出</tr>。另外,你的代码反复使用<?php ?>使得可读性很差,我建议所有代码都写在<?php ?>里面,相关代码修改如下:

 <?php

$iii=0;//已经输出的数据个数
 while ($row_ji = mysql_fetch_assoc($ji)) { 
      if ($iii==0) echo '<Tr>';    

     echo <<<END

     <td><table width="200" border="0" cellpadding="0">
        <tr>          <td>姓名:{$row_ji['groupname']}</td>        </tr>
        <tr>          <td>行业:{$row_ji['src']}</td>        </tr>
        <tr>          <td>电话:{$row_ji['url']}</td>        </tr>
      </table></td>

END;

      if ($iii==0) echo '</Tr>';    

    $iii++;

    if ($iii>5) $iii=0;

}

 ?>

来自:求助得到的回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式