View Single Post
  #6  
Old 01-17-2012, 01:14 PM
  cherie's Avatar 
cherie cherie is offline
 

X-Wizard
  
Join Date: May 2003
Location: USA
Posts: 1,534
 

Default Re: BCSE Shipping Estimator in 4.3.0 not working

Here is some code added to shipping_estimator.php for 4.3 used with Yahoo PlaceFinder that might point you in the right direction:

PHP Code:
$defState 'AK';
require_once(
'PlaceFinder_api.php');
$ypl = new yahoo_placeFinder();
$ypl->postal $zipcode_estimate;
$ypl->country $default_country_estimate;
$ypl->addFlag('PHP');
$yplData unserialize($ypl->execute());
$defState $yplData['ResultSet']['Result'][0]['statecode']; 
__________________
redlimeweb.com
custom mods and design integration
4.7 linux
Reply With Quote