hi
I am using php version into mrt file
How to change the data with get parameter
How do I get a report with GET parameter
How do I get a report with GET parameter
- Attachments
-
- bilgi.png (17.28 KiB) Viewed 17020 times
-
- Posts: 7193
- Joined: Tue Mar 20, 2018 5:34 am
Re: How do I get a report with GET parameter
thank you very much for the return can you make me a small mrt file and index.php with get variables
-
- Posts: 7193
- Joined: Tue Mar 20, 2018 5:34 am
Re: How do I get a report with GET parameter
Hello,
https://www.stimulsoft.com/en/documenta ... iables.htm
Report variables transferred in a URL query
The report generator has the ability to automatically assign values to variables passed in a URL request. To enable this, you need to set the passQueryParametersToReport property to true in the event handler:
Thank you.
https://www.stimulsoft.com/en/documenta ... iables.htm
Report variables transferred in a URL query
The report generator has the ability to automatically assign values to variables passed in a URL request. To enable this, you need to set the passQueryParametersToReport property to true in the event handler:
Code: Select all
<?php
use Stimulsoft\Report\StiReport;
$report = new StiReport();
$report->handler->passQueryParametersToReport = true;
$report->process();
?>