•How to access crystal reports through PHP code?
Answer / guest
We can access crystal reports in php using COM object.
e.g.
$domobj = new COM("crystalruntime.application");
$domobj->OpenReport("repname.rpt");
There are different ExportFormatType
//4 - RTF; 31 - PDF; 30 - xls; 36 - xls; 14 – doc
| Is This Answer Correct ? | 0 Yes | 1 No |
What is slim framework?
Can php run without apache?
Explain how we can retrieve the data in the result set of mysql using php?
How to get the length of string?
Tell me can the value of a constant change during the script's execution?
How to remove duplicate values from array using php?
How can I prevent sql-injection in php?
suppose if u want to pass session value using cookies onlu.. what changes i've to made in php.ini file?
Explain about objects in PHP?
What are the 3 types of sessions?
What does the scope of variables means?
Why super () is used in java?