hello,
i'm using crystal report with connection with a datebase in postgres, i would like to use php for displaying the result of my report in a web page.
i setup a php under windows for using COM funtion, and i've found some like :
<?
$app_obj = new COM("CrystalRuntime.Application") or Die ("Did not open");
$rpt_obj = $app_obj->OpenReport(realpath("c:....\MainReport.rpt"));
// for printing the report
$rpt_obj->PrintOut();
// to export and saving on a hard disk in PDF
$rpt_obj->Export(True);
?>
my question is :
how to display my report in a web browser ? cause i don't find any more function
is there anybody use PHP with Crystal Report
Please Help me.