Hi
Pls tell me how to create a Crystal Report in php, mysql using com component Thanks in advance Arry :rolleyes:
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);
HiHi. thnx for your reply . but it dosent work with crystal report 11. I tried using ----->
Pls tell me how to create a Crystal Report in php, mysql using com component Thanks in advance Arry :rolleyes:
$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
$COM_Object = "CrystalReports11.ObjectFactory.1";
$objCom = new COM($COM_Object); $crapp = $objCom->CreateObject("CrystalDesignRunTime.Application");
$creport = $crapp->OpenReport($my_report, 1);
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