Preview: CourierServiceClient.php
Size: 1.79 KB
/home/godevadmin/public_html/include/CourierServiceClient.php
<?php
/*include_once "UPS.php";
$ups=new UPS();
$ups->setShipToName("Abdul Manan");
$ups->setShipToPhone("1234567890");
$ups->setShipToCompanyName("CX");
$ups->setShipToAddressLine1("914 Capitol Mall");
$ups->setShipToCityLocality("Sacramento");
$ups->setShipToStateProvince("CA");
$ups->setShipToPostalCode("95814");
$ups->setShipFromName("Moto");
$ups->setShipFromPhone("9876543210");
$ups->setShipFromCompanyName("Moto");
$ups->setShipFromAddressLine1("2626 W Devon Ave");
$ups->setShipFromAddressLine1("Devon Ave");
$ups->setShipFromCityLocality("Chicago");
$ups->setShipFromStateProvince("IL");
$ups->setShipFromPostalCode("60659");
$ups->setValidateAddress("no_validation");
$ups->setCarrier("USPS");
$ups->setWeight("18.00");
$ups->getRates();
if($ups->isError()===true){
print_r($ups->getError());
}*/
include_once "CourierService.php";
$ups=new CourierService();
$ups->setCarrier("UPS");
$ups->setShipFromName("Fresh Farms");
$ups->setShipFromAddressLine1("2626 W Devon Ave");
$ups->setShipFromCityLocality("Chicago");
$ups->setShipFromStateProvince("IL");
$ups->setShipFromPostalCode("60659");
$ups->setShipFROMCountryCode("US");
$ups->setShipToName("Abdul Manan");
/*$ups->setShipToAddressLine1("914 Capitol Mall");
$ups->setShipToCityLocality("Sacramento");
$ups->setShipToStateProvince("CA");
$ups->setShipToPostalCode("95814");*/
$ups->setShipToAddressLine1("1169 Harbor CT");
$ups->setShipToCityLocality("Glendale Heights");
$ups->setShipToStateProvince("IL");
$ups->setShipToPostalCode("60139");
$ups->setShipToCountryCode("US");
$ups->setTransactionReference("17890");
$ups->setBoxType("Small");
$ups->setWeight("09");
//$ups->getRates();
echo '<pre>';
$ups->getRates();
if($ups->isError()===true){
print_r($ups->getError());
}
Directory Contents
Dirs: 1 × Files: 25