-2
如何在定製電子商務中的數量交叉15後在基準價格中應用5%的折扣。購物車價按數量折扣
代碼:
$price = $_POST['price'];
$quantity = $_POST['quantity'];
$discount = $_POST['discount'];
$tax = $_POST['tax'];
$shipping = $_POST['shipping'];
$payments = $_POST['payments'];
$total = (($price * $quantity) + $shipping) - $discount;
我們看一些代碼.. – JustBaron
我可以與大家分享這個文件,你會請提供我您的電子郵件ID –
不,你沒事的感謝。只需在您的問題中發佈一些示例代碼,並使用您已經嘗試的代碼。 – JustBaron