Shin
Shin

Reputation: 280

Quick book integration for PHP Website

I am a PHP web developer. I have a project with a payment section. My client requested that I integrate this section with QuickBooks. I don't know anything about QuickBooks. Is there a framework for integrating QuickBooks? Also, how do I implement QuickBooks data into a PHP Mysql website? Thanks.

Upvotes: 0

Views: 1887

Answers (1)

Brett
Brett

Reputation: 3316

Quickbooks is an accounting package. Plenty of people have linked into Quickbooks for custom applications over the years. Implementing it to a web based application will depend on your requirements.

Normally what is necessary is for the user to export the records to a CSV file or a QIF file and then you import it. If not some basic work has been done integrating Quickbooks with PHP which you can use. For example http://www.consolibyte.com/download.php?ID=5. There is also a great stackoverflow question here https://stackoverflow.com/questions/151216/php-quickbooks-integration-api. Like I said it depends on your requirements.

Upvotes: 1

Related Questions