MySQL open source reporting services

前端 未结 3 1735
你的背包
你的背包 2021-02-07 11:31

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

3条回答
  •  执笔经年
    2021-02-07 11:33

    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

提交回复
热议问题