2

如何使用循环显示表格标签内的表格中的所有数据?这是我的代码:

     <table width="380px">
              <tr>
                     <td><?php echo $left_bread['recipe'];?></td>
                     <td><?php echo $left_bread['name'];?></td>
                     <td><?php echo $left_bread['scale_date'];?></td>
               </tr>
      </table>
4

2 回答 2

3

我认为您的代码缺少..据我所知,它缺少 foreach()。也许你应该试试这个,

<?php foreach($your_variable as $your_alias):?>
<table width="380px">
<tr>
    <td><?php echo $your_alias['recipe'];?></td>
    <td><?php echo $your_alias['name'];?></td>
    <td><?php echo $your_alias['scale_date'];?></td>
</tr>
</table>
<?php endforeach;?>

我想就是这样,如果你想要的是从查询中动态显示数据,那么这会做,知道 $your_variable 包含一个将获取配方、名称和 scale_date 的查询。:)

于 2012-05-24T08:33:48.673 回答
1

您需要使用 foreach 来访问您的数据..

//$data for example contains your fetched results from the database 

// this will lopp until it contains results
<?php
foreach( $data as $left_bread ) {

<table width="380px">
<tr>
 <td><?php echo $left_bread['recipe'];?></td>
<td><?php echo $left_bread['name'];?></td>
<td><?php echo $left_bread['scale_date'];?></td>
</tr>
</table>

}

  ?>
于 2012-05-24T08:48:31.047 回答