Hi
Pls tell me how to create a Crystal Report in php, mysql using com component

Thanks in advance

Arry :rolleyes:

Recommended Answers

All 8 Replies

Member Avatar for iamthwee

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);

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

Will anybody tell me book of crystal report with php?

$COM_Object = "CrystalReports11.ObjectFactory.1";
$objCom = new COM($COM_Object);

$crapp = $objCom->CreateObject("CrystalDesignRunTime.Application");
$creport = $crapp->OpenReport($my_report, 1);

how to create report in php

    how to create crystal report in php code

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

Probably best to start your own thread. A 12 year old well dead thread ain't going to attract much attention.

Seeing as you also posted this to stackoverflow: https://stackoverflow.com/questions/56817045/using-crystal-report-with-php

Let us know if you have not got a solution in case we waste our time trying to help you and you're dealing with this on another site.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.