MySQL open source reporting services

Viewed 27513

I am currently working on a project where reporting services are required. The database back end is built using MySQL and I would like to have something with similar functionality to say SSRS.

Does anyone have any experience with an open source solution for this? Any they would particularly recommend? It would have to be accessed via a browser.

Thanks,

David

3 Answers

For the PHP MYSQL Reporting tool, try the Smart Report Engine You can use it as a native PHP engine or a larval package. with very few lines of code like the following code example, you can create a professional auto dynamic report from your project.

$report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("items"))
       ->set_grouping(array("country"))
       ->select_all_fields();
$engine = new CustomEngine($report);
$report_path = $engine->create_report();

More code examples of using Smart Report Engine

Related