calculating frieght
Moderator: General Moderators
calculating frieght
hey guys,
i was wondering if someone could point me in the right direction of the best way to calculate frieght on a shopping cart.
what are the methods people use or anything anyones know abot this would be very helpfull.
thanx!
i was wondering if someone could point me in the right direction of the best way to calculate frieght on a shopping cart.
what are the methods people use or anything anyones know abot this would be very helpfull.
thanx!
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
via googling: [google]~freight site:zend.com[/google]
UPS class: http://www.zend.com/codex.php?id=202&single=1
USPS Priority Mail: http://www.zend.com/codex.php?id=618&single=1
UPS class: http://www.zend.com/codex.php?id=202&single=1
USPS Priority Mail: http://www.zend.com/codex.php?id=618&single=1
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
I used the google cache

here's how I got the pages:
did the google search above.
clicked "cached" in their entry.
clicked "cached text" in the cache page.
er, clicked.
here's how I got the pages:
did the google search above.
clicked "cached" in their entry.
clicked "cached text" in the cache page.
er, clicked.
Last edited by feyd on Sat Oct 09, 2004 11:50 pm, edited 1 time in total.
im getting a phase error unexpected t string
is this vaild code? is equals to etc...?
is this vaild code? is equals to etc...?
Code: Select all
<?php
if ($C_Freight == North Island New Zealand)
{
$shipping = 10;
}
if ($C_Freight == South Island New Zealand)
{
$shipping = 20;
}
else
{
$shipping = 30;
}
?>