how to call cristal report using php

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • boss1
    New Member
    • Sep 2007
    • 45

    how to call cristal report using php

    i have have developed a webbased application using php but i want to show some my reports developed in cristal report.

    Now how can i call the cristal reports using php?
    can anybody help me?
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by boss1
    i have have developed a webbased application using php but i want to show some my reports developed in cristal report.

    Now how can i call the cristal reports using php?
    can anybody help me?
    I have no idea what 'cristal reports' are, as im sure most other experts here dont.

    Any elaboration might be helpful.

    Regards

    Comment

    • TheServant
      Recognized Expert Top Contributor
      • Feb 2008
      • 1168

      #3
      It's Crystal Reports he's referring to (never heard of them before). I am not sure if it can be done through php as it seems to be an Access feature/program/function?

      Have a look at some forums dedicated to answering Crystal Report questions. If you have some code to work with in php come here ;)

      Comment

      • Rajapaksha

        #4
        how to call cristal report using php

        $cr=new com("Crystal.CR PE.Application1 ")
        or die("cannot load cr com");
        $rn="D:\Report. rpt";
        $rap=$cr->OpenReport($rn );

        Comment

        Working...