but i have read some code that php can call rpt file, here the code
<?php
$oApp = new COM ("CrystalRuntime.Application");
$oRpt = $oApp->OpenReport(realpath("filename.rpt"));
$oRpt->MorePrintEngineErrorMessages = 0;
$oRpt->EnableParameterPrompting = 0;
$oRpt->RecordSelectionFormula = "{EMPLOYEE.NAME} < 'C'";
$oRpt->PrintOut(false); // tried also with $oRpt->PrintOut(0) but i get an exception
?>
is it possible rpt can be call in php?