Hi, I’d like to start using MySQL in my editor where I’m currently using only PHP coding (I want to use them together). dsQuery has saved my life a number of times, but it is rather limited in a number of ways. My editor is in WordPress (which I believe has MySQL inbuilt) which in turn is linked to the Infusionsoft database through the API. I have the necessary access code at the top of every PHP script I write, to ensure the PHP script on WordPress works seamlessly with Infusionsoft (which it does!). Thus:
require_once(“isdk.php”);
$app = new iSDK;
$app->cfgCon("[Infusionsoft application ID – 2 letters & 3 numbers]");
My question is, if I’m able (and ‘allowed’) to use MySQL with my PHP script to query the Infusionsoft database, do I need to set up anything further to generally connect MySQL queries to Infusionsoft? Also, what code do I need to put in front of each MySQL query to allow it to be recognised as a MySQL query?
Many thanks.
Jerry