RE: [PHP] UPS shipping calculation

2001-02-17 Thread Dallas Kropka
te->origin("08033", "US"); // Use ISO country codes! $rate->dest("90210", "US"); // Use ISO country codes! $rate->rate("RDP"); // See the rate() function for codes $rate->container("CP"); // See the container() f

Re: [PHP] UPS shipping calculation

2001-02-17 Thread John Monfort
There is a Perl module that is very useful for this, I'm currently in the process of implementing it. You can find a copy at http://www.seva.net/~msolomon/Business-UPS/dist/ I'm looking for something similar for FedEx, so let me know if you find one. __John Monfort

[PHP] UPS shipping calculation

2001-02-17 Thread Isaac Force
I'm looking for a better way to calculate UPS shipping costs than opening a connection to the UPS website every time a user wants to calculate their shipping (Which is what I'm finding). Anybody care to point me in the direction of where I can information on how to do this? -- PHP General Mai