Thinreports for PHP

Easy and Simple way for generating a PDF report on pure PHP

Follow me on GitHub

About

Thinreports for PHP is an implementation of the Thinreports Generator in PHP. It provides easy and simple way for generating a PDF report on pure PHP.

use Thinreports\Report;

$report = new Report('hello_world.tlf');

$page = $report->addPage();
$page('hello_world')->setValue('Hello thinreports-php');

$report->generate('hello_world.pdf');

Getting Started

What is Thinreports

Thinreports is an open source report generation tools. It provides the Thinreports Editor which is a tool for designing a report format, and the Thinreports Generator for Ruby which is a library for generating a PDF. See the following pages for further details.