Recommend this page to a friend! |
All requests | > | What is the best PHP mysql report class? | > | Request new recommendation | > | Featured requests | > | No recommendations |
by Yiu 2015 - 14 days ago (2022-12-17)
+1 | I want to build a nice report from MySQL queries. |
+1 | by Stefan Kientzler 310 - 14 days ago (2022-12-17) Comment Even if the request 'build a nice report' is very general and subjective, I think that the following package can help. Otherwise, the request may should be formulated a little more specifically... Using this package, you are able to generate a report containing all Inforations to a given MySQL database (including all Tables, Triggers, Stored procedures) |
1. by Stefan Kientzler Reply
- 12 days ago (2022-12-18)OK - so i think, the package
11553-PHP-Generate-PDF-documents-with-tables-displaying-data.html#information
could give you the ability to generate any report from the result of a SQL query.
Just replace the following loop in the example
for ($iRow = 1; $iRow <= 100; $iRow++) {
with a construction like this:
$res = $db->query("SELECT * FROM myTable"); while (($row = $res->fetch_array(MYSQLI_ASSOC)) != false) {
Recommend package | |
|