Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php reporting tools [closed]

I have been developing with PHP for over ten years (since PHP version 3) and have used many different programming languages.

But I have never seen any PHP reporting tools. I am looking for something similar to

  • Jasper Reports
  • Crystal Reports
  • Fast Report
  • Quick Report
  • Report Builder

I am not looking for:

  • FPDF
  • PHPExcel
  • TCPDF

There must be a report designer and report library.

Has anyone seen PHP reporting tools comparable to those I mentioned?

like image 589
sdemirkeser Avatar asked Mar 10 '12 12:03

sdemirkeser


People also ask

Is KoolReport free?

KoolReport is released under MIT license which is totally free to download and use.

Can we use Crystal Reports in PHP?

Please try this method in php, you only have connectivity issue and some configuration are required at window side for crystal reports to work it correctly.

Is FineReport open source?

Best Free and Open Source Dashboard Software in 2022 | FineReport. More and more people are convinced of the power of dashboards. Today, this post will review the top free and open source dashboard software specializing in project management, marketing, TV display, and so on. Welcome to take advantage of it!


Video Answer


1 Answers

You should check out Php Reports http://jdorn.github.io/php-reports/

Pros:

  • Display reports as HTML tables
  • Add charts/graphs to accompany reports
  • Export reports to CSV, XLS, JSON, XML, etc.
  • Add parameters to reports (e.g. date range)
  • Find reports by browsing or searching.
  • Looks really nice.

Cons:

  • No report designer, reports are just SQL files with comments for meta information
  • No user management or access control
  • No email scheduling of reports (coming soon)

I looked into all the existing solutions for PHP before writing the Php Reports framework. Everything out there was ugly, unmaintained, not flexible enough, and/or hard to set up and use.

like image 56
jdorn Avatar answered Sep 22 '22 13:09

jdorn