试图将小计乘以运费%来获得总计

时间:2013-08-07 02:17:30

标签: php mysql

来自购物车我有两个选项,一个用于支票,一个用于PayPal

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

 <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%的运费和手续费,以便它可以降低到我的总数?

1 个答案:

答案 0 :(得分:0)

瑞恩

你必须写

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

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