stimulsoft / reports-php
Stimulsoft Reports.PHP
Installs: 7 235
Dependents: 2
Suggesters: 0
Security: 0
Stars: 5
Watchers: 10
Forks: 4
Open Issues: 0
Requires
- php: >=7.0
- ext-json: *
- ext-mbstring: *
- ext-zlib: *
- phpmailer/phpmailer: ^6.6
Suggests
- ext-interbase: *
- ext-mssql: *
- ext-mysqli: *
- ext-oci8: *
- ext-odbc: *
- ext-pdo: *
- ext-pgsql: *
- ext-sqlsrv: *
- dev-master
- 2025.1.1
- 2024.4.5
- 2024.4.4
- 2024.4.3
- 2024.4.2
- 2024.4.1
- 2024.3.6
- 2024.3.5
- 2024.3.4
- 2024.3.3
- 2024.3.2
- 2024.3.1
- 2024.2.6
- 2024.2.5
- 2024.2.4
- 2024.2.3
- 2024.2.2
- 2024.2.1
- 2024.1.4
- 2024.1.3
- 2024.1.2
- 2024.1.1
- 2023.4.4
- 2023.4.3
- 2023.4.2
- 2023.4.1
- 2023.3.4
- 2023.3.3
- 2023.3.2
- 2023.3.1
- 2023.2.8
- 2023.2.7
- 2023.2.6
- 2023.2.5
- 2023.2.4
- 2023.2.3
- 2023.2.2
- 2023.2.1
- 2023.1.8
- 2023.1.7
- 2023.1.6
- 2023.1.5
- 2023.1.4
- 2023.1.3
- 2023.1.2
- 2023.1.1
- 2022.4.5
- 2022.4.4
This package is auto-updated.
Last update: 2024-12-13 12:10:58 UTC
README
Stimulsoft Reports.PHP is a report generator intended to create, view, print, and export reports online using client-server technology. The Stimulsoft report generator for PHP is a fast and powerful JavaScript report engine, rich and intuitive interface, simple integration and deployment process in PHP applications, and an easy and understandable licensing model.
Installation
You can add the necessary libraries using the command:
composer require stimulsoft/reports-php
Usage
To work with the report generator, use the following code:
<?php require_once 'vendor/autoload.php'; use Stimulsoft\Report\StiReport; $report = new StiReport(); $report->process(); $report->loadFile('reports/SimpleList.mrt'); $report->render(); $report->printHtml(); ?>
To work with the report viewer, use the following code:
<?php require_once 'vendor/autoload.php'; use Stimulsoft\Report\StiReport; use Stimulsoft\Viewer\StiViewer; $viewer = new StiViewer(); $viewer->process(); $report = new StiReport(); $report->loadFile('reports/SimpleList.mrt'); $viewer->report = $report; $viewer->printHtml(); ?>
To work with the report designer, use the following code:
<?php require_once 'vendor/autoload.php'; use Stimulsoft\Report\StiReport; use Stimulsoft\Designer\StiDesigner; $designer = new StiDesigner(); $designer->process(); $report = new StiReport(); $report->loadFile('reports/SimpleList.mrt'); $designer->report = $report; $designer->printHtml(); ?>
These code examples are basic. There are many features, options, and other variations. For details, see our examples and documentation. For more details, please see our examples and documentation.