dschroeder Report post Posted March 29, 2010 OK, you convinced me that I had to use PHP to do a server side export and save of a chart. Where is the dbconn.php for an Access database? Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted March 29, 2010 Hi, Please refer to the Includes folder FusionCharts for the same. Ref.- FusionCharts_Evaluation > Code > PHP > Includes > DBConn.php Hope this helps. Share this post Link to post Share on other sites
srividya_sharma Report post Posted March 30, 2010 Hi You could easily modify the DBConn.php to connect to the MS Access database. Here is a simple piece of code to connect to the database: $db = 'C:Program FilesMicrosoft OfficeOffice10SamplesNorthwind.mdb'; $conn = new COM('ADODB.Connection') or exit('Cannot start ADO.'); // Connect $conn->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db") or exit('Cannot open with driver.'); Hope this helps. Srividya Share this post Link to post Share on other sites
dschroeder Report post Posted March 30, 2010 That one is for mySQL - is there no difference? Share this post Link to post Share on other sites
dschroeder Report post Posted March 30, 2010 Thanks, the modified code included in the post will help. Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted March 30, 2010 Hi, We are happy to help you. Share this post Link to post Share on other sites