Use the open-source PHP DevKit here:
Follow the instructions here to get set up (you should more than likely be using the DESKTOP method):
Example code is here:
It looks something like this:
// Now, let's create a credit card object, and authorize an amount agains the card
$name = 'Keith Palmer';
$number = '5105105105105100';
$expyear = date('Y');
$expmonth = date('m');
$address = '56 Cowles Road';
$postalcode = '06279';
$cvv = null;
// Create the CreditCard object
$Card = new QuickBooks_MerchantService_CreditCard($name, $number, $expyear, $expmonth, $address, $postalcode, $cvv);
// We're going to authorize $295.00
$amount = 295.0;
if ($Transaction = $MS->authorize($Card, $amount))
{
print('Card authorized!' . "\n");
print_r($Transaction);
}
Some other notes:
i dont really need a shopping cart application
Intuit does not offer a shopping cart, so that really has nothing to do with any of this.
I think i can use Keith's quickbook-devkit but i don't think i can implement it the right way.
If you don't think so, perhaps you should provide a bit more detail. Specifically why don't you think you can implement it the "right" way? What is this "right" way that you're trying to implement it as?