I am trying to create a link that will load a specific report. Currently, to open a report I go to internal/admin/academics/reporting/dataslicer.php, click on the “Reports” button, and select a report from the list.
The link to each report is the same: internal/admin/academics/reporting/dataslicer.php#
I know that each report has a unique number and that when a report is clicked, it does the following:
<a href="#" onclick="loadReport(11111); return false;">Report Name</a> == $0
I thought I could load the report by using the URL: internal/admin/academics/reporting/dataslicer.php?loadReport=11111
Is it possible to load a report via URL, or am I wasting my time?
Thanks