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 functional
For a 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