I am adding invoice to quickbooks online using Keith Palmer's QuickBooks PHP DevKit.
I developed a demo model in localhost, and its working fine and adding invoices to my quickbooks online.
but now when i uploaded it on server, it's not fetching items by this code, and returns false,
$ItemService = new QuickBooks_IPP_Service_Term();
$items = $ItemService->query($Context, $realm, "SELECT * FROM Item WHERE name = 'test1' ");
in localhost its fetching data perfectly,
i only made change in $dsn, before uploading it to server,
$dsn = 'mysqli://root:root@localhost/example_app_ipp_v3';
can anyone please tell me where could be the issue, Keith Palmer Plz ?