Create Crystal Report using PHP, Mysql

Hi
Pls tell me how to create a Crystal Report in php, mysql using com component Thanks in advance Arry :rolleyes:

17 Years Ago

Doesn't visual studio have a good crystal report utility? Any way try calling it as a com object $cr=new com("Crystal.CRPE.Application") or die("cannot load cr com");
$rn="F:\notes5\test.rpt";
$rap=$cr->OpenReport($rn);

arry004 0 Newbie Poster 17 Years Ago

Hi
Pls tell me how to create a Crystal Report in php, mysql using com component Thanks in advance Arry :rolleyes:

Hi. thnx for your reply . but it dosent work with crystal report 11. I tried using ----->
$COM_Object = "CrystalReports11.ObjectFactory.1"; $objCom = new COM($COM_Object); $crapp = $objCom->CreateObject("CrystalDesignRunTime.Application"); $creport = $crapp->OpenReport($my_report, 1);

but got an error at
$objCom->CreateObject("CrystalDesignRunTime.Application"); are there any examples or tutorials available . if there are please give me the links for them. Thanks

nikesh.yadav 4 Posting Whiz in Training 16 Years Ago Will anybody tell me book of crystal report with php? monu82sona 0 Newbie Poster 14 Years Ago

$COM_Object = "CrystalReports11.ObjectFactory.1";
$objCom = new COM($COM_Object); $crapp = $objCom->CreateObject("CrystalDesignRunTime.Application");
$creport = $crapp->OpenReport($my_report, 1);

hemantsahu 0 Newbie Poster 14 Years Ago how to create report in php kmp1 0 Newbie Poster 12 Years Ago
 how to create crystal report in php code 
soham_3 0 Newbie Poster 5 Years Ago

Hello I am using Crystal report version 11.5.8.826, php version 7.0.10, Apache version 42.4.33 and MySql Version 5.7.14.
I have created the sampel rptone.rpt file that contents sample report. I want to load that rptone.rpt file usin php. i have used this code:

 `$my_report = "report/rptone.rpt" $COM_Object = "CrystalReports115.ObjectFactory.1"; $objCom = new COM($COM_Object, "localhost", 0, ""); $crapp = $objCom->CreateObject("CrystalDesignRunTime.Application"); $creport = $crapp->OpenReport($my_report, 1);`

I am getting error Fatal error: Uncaught com_exception: Failed to create COM object `CrystalReports115.ObjectFactory.1': Class not registered