| 
<?php
require_once 'google.checkout.inc.php';
 $gch = new googleCheckout('467054554663234', 'sandbox', 'USD');
 $gch->addItem('Product 1', 'Description of Product 1...', 5, 12.95);
 $gch->addItem('Product 2', 'Description of Product 2...', 1, 10.55);
 $gch->addDiscount('Discount', 'Description of discount...', 20.00);
 $gch->addShippingMethod('Ground Method', 'Description of shipping method 1', 10.75, 'ALL');
 $gch->addShippingMethod('3 Days Shipping', 'Description of shipping method 2', 10.25, 'ALL');
 $gch->addShippingMethod('5 Days Shipping', 'Description of shipping method 3', 10.15, 'FULL_50_STATES');
 $gch->setTaxRate(0.085, 'CA');
 echo $gch->showButton('large', 'white', false, true);
 ?>
 |