gpt4 book ai didi

php - 从购物车创建发票

转载 作者:行者123 更新时间:2023-11-29 21:39:10 25 4
gpt4 key购买 nike

我正在尝试将购物车的输出显示到发票中。数据可以显示,但不正确。 enter image description here

下面是我的代码

l

 <table class="table table-striped">
<thead>
<tr>
<th>Qty</th>
<th>Item</th>
<th>Subtotal</th>
</tr>
</thead>

<?php
if(is_array($_SESSION['cart'])){

$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=$_SESSION['cart'][$i]['qty'];
$pname=get_product_name($pid);
if($q==0) continue;
?>
<tbody>

// Display
<tr>
<td><?php echo $q?></td>
<td><?php echo $pname?></td>
<td>$ <?php echo get_price($pid)*$q?></td>
</tr>
</tbody>
</table>
</div><!-- /.col -->
</div><!-- /.row -->

<?php
}
?>
<div class="row">
<!-- accepted payments column --><!-- /.col -->

<div class="col-xs-6" align="right">
<p class="lead">&nbsp;</p>
<div class="table-responsive">
<table class="table">
<tr>
<th>Total:</th>
<td> $<?php echo get_order_total()?></td>
</tr>

<?php
}
else{
echo "<tr bgColor='#FFFFFF'><td>There are no items in your shopping cart!</td>";
}
?>
</table>
</div>
</div><!-- /.col -->

我想对其进行排列,以便它可以像第一个结果一样显示。

I hope it will send this time.

最佳答案

始终编写缩进代码。它将帮助您进行调试并且看起来不错。

我尝试按照您在图像中的要求更新 html。请尝试如下:

<table class="table table-striped">
<thead>
<tr>
<th>Qty</th>
<th>Item</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<?php
if(is_array($_SESSION['cart']))
{
$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++)
{
$pid=$_SESSION['cart'][$i]['productid'];
$q=$_SESSION['cart'][$i]['qty'];
$pname=get_product_name($pid);
if($q==0) continue;
?>
<tr>
<td><?php echo $q?></td>
<td><?php echo $pname?></td>
<td>$ <?php echo get_price($pid)*$q?></td>
</tr>
<?php
}
}
else
{ ?>
<tr bgColor='#FFFFFF'>
<td>There are no items in your shopping cart!</td>
</tr>
<?php } ?>
</tbody>
</table>
<?php
if(is_array($_SESSION['cart']))
{ ?>
<div class="row">
<div class="col-xs-6" align="right">
<p class="lead">&nbsp;</p>
<div class="table-responsive">
<table class="table">
<tr>
<th>Total:</th>
<td>$<?php echo get_order_total()?>
</td>
</tr>
</table>
</div>
</div>
</div>
<?php } ?>

关于php - 从购物车创建发票,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34675689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com