我有一个带有表格的模态。我从foreach表中加载模态。我相信我的代码是正确的,但我不知道为什么它以一种有趣的方式显示。这是我的代码,当我运行此代码时,这是我得到code looks
的结果<tbody>
<?php
$count = 1;
$notarray = DataDB::getInstance()->select_from_where('order_collective','user_id',$userid);
foreach($notarray as $row):
$address = $row['appartment'].",".$row['address'].",".$row['city'].",".$row['state'].".".$row['landmark'];
?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $row['trackingnumber'];?></td>
<td><?php echo "NGN ".number_format($row['price'], 2);?></td>
<td><?php echo $address;?></td>
<td><?php echo $row['order_date'];?></td>
<td><?php echo DataDB::getInstance()->get_name_from_id('name','delivery_status','delivery_status_id',$row['delivery_status']);?></td>
<td>
<div class="btn-group">
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#myVie<?php echo $row['trackingnumber'] ?>">View</button>
</div>
</td>
</tr>
<?php include ('order_history_modal.php'); ?>
<?php endforeach;?>
</tbody>
<!-- order history modal code-->
<div id="myVie<?php echo $row['trackingnumber'] ?>" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<?php
$notal = DataDB::getInstance()->select_from_where('order_details','trackingnumber',$row['trackingnumber']);
foreach($notal as $rol):
$prrname = DataDB::getInstance()->get_name_from_id('product_name','product','product_id',$rol['product_id']);?>
<tr>
<td><?php echo $prrname ?></td>
<td><?php echo $rol['quantity'] ?></td>
<td><?php echo "NGN ".number_format($rol['price'], 2);?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<p></p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>