•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 a null coalescing operator in php7?
What is variable give example?
Does php support multithreading?
How to upload and play video in Php when u r in localhost?
how many types of inheritance is there in php? name there?
Why post method is used in php?
Use of Session
Create a PHP web script with the following attributes: on start, three HTML form elements are shown: an string input field, a checkbox field, a dropdown/pull down list with 5 elements and a submit button. On submission, the form should be redisplayed (while remaining all options/inputs as the user has selected/entered them). Additionally, the selections/inputs of the user should be displayed in text. Please solve this without the use of any external libraries.
What is api used for?
What does the unlink() function mean?
Are php sessions cookies?
How check submit button is clicked in php?