0

我有页面,我使用 php 从 mysql 填充表。我有 10 张桌子。如果表中没有数据,则不显示该表。

我已经为表一显示了像“1”这样的编号,为表 2 显示了 2,依此类推。现在如果表 3、6、9 没有数据,那么页面将显示数字 1、2、4、5、7、8、10 的表。但我希望根据显示的表格数量进行编号。

$tbl2= "SELECT * FROM wp_health_aanvullend_moduliar WHERE health_id=$hid";
$rs2 = mysql_query($tbl2);
$count2 = mysql_num_rows($rs2);

 <?php if($count2 > 0){?>

<table class="sub_front_efect" cellpadding="0" cellspacing="0" style=" border:none; margin:10px 0;">
<thead>
    <tr>
      <th colspan="100%" class="health_sub_front">Aanvullend moduliar</th></tr>
</thead>
<tbody>

<?php  $wp_health_aanvullend_moduliar = "wp_health_aanvullend_moduliar";
             $crows = $wpdb->get_results( "SELECT * FROM $wp_health_aanvullend_moduliar WHERE health_id=$hid");
              foreach ($crows as $crow) {
                 $type          = $crow->type ;
                 $price         = $crow->price;


              ?>
    <tr data-price="<?php echo $price; ?>"><td width="65%"><?php echo $type; ?></td><td style="border-right:1px solid #ccc;">&euro; <?php echo $price; ?></td></tr>
    <?php 
              }
    ?>
  </tbody>

<?php } ?>

如果所有表格都有数据,则全部显示。有数字的表 什么是逻辑

谢谢

4

2 回答 2

1

You should use a counter inside the loop where you displaying the tables. In all tables without content the counter wouldn't be increase.

于 2012-11-06T08:00:04.727 回答
0

尝试这样的事情:

$k=1;
for($i=1;$i<=10;$i++)
{
$query="select * from table".$i."";
$result=mysql_query($result);
$count=mysql_num_rows($result);
if($count>0)
{
echo"<table>";
echo"<tr><td>Table".$k."</td></tr>";
echo"</table>
$k++;
}

}
于 2012-11-06T08:44:00.910 回答