Guest User

Untitled

a guest
May 6th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // Additional Shipping Cost per product
  2. foreach($products AS $product)
  3. // if carrier name = 'usps international'
  4. // {
  5. // if product price is $.01 - $50 $shipping_cost = $1.85;
  6. // if product price is $50.01 - $100 $shipping_cost =$2.35;
  7. // if product price is $100.01 - $200 $shipping_cost =$2.90;
  8. // if product price is $200.01 - $300 $shipping_cost =$4.85;
  9. // if product price is $300.01 - $400 $shipping_cost =$5.95;
  10. // if product price is $400.01 - $500 $shipping_cost =$7.05;
  11. // if product price is $500.01 - $600 $shipping_cost =$8.15;
  12. // if product price is $600.01 - $5000 $shipping_cost =$8.15 + ($1.10 per $100);
  13. // }
  14. // continue to add any aditinal sipping
Advertisement
Add Comment
Please, Sign In to add comment