来自购物车,我有两种选择,一种用于支票,一种用于贝宝

我需要将总价的费用显示为运费和手续费

 <td><form id="formb" name="formb" method="post" action="checkout_paypal.php" onSubmit="return checkouttwo();">
                  <span class="TextA">Pick-up date:</span>
                  <input name="PICKUP1" type="text" class="TextA" id="PICKUP1" size="20" />
<input type="hidden" name="memberid" value="<?echo$_SESSION['memberid']?>">
<input type="hidden" name="cart" value="<?echo$wcart?>">
<input type="hidden" name="amount" value="<?echo$SHOWMEQ?>">

                <label>
                  <input name="button" type="submit" class="TextB" id="button" value="Pay by Paypal" />
                  </label>
              </form></td>
                </tr>
                <tr>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
                <tr>
                  <td valign="top" class="TextB">Total: $<?echo$SHOWMEQ?></td>
                  <td valign="top"><span class="TextB">Shipping & Handling Fee: $</span><br />
                    <span class="TextB">Total: $<?echo$GETMYTOTAL?></span></td>


那我的代码是在那增加3%的运费和手续费,这样它就可以累计到我的总费用中?

最佳答案

瑞安

你只需要写

<span class="TextB">Total: $<?php echo ($SHOWMEQ*3/100)+$SHOWMEQ;?></span>


它将显示总金额以及3%的运费和手续费。

关于php - 试图将小计乘以运费%以获得总计,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18093552/

10-09 21:47