Yes, I'll be using MYSQL as the database and the website will be created in PHP. Im looking for a reporting tool will help me to build these reports that will be posted on a website and can be dowload by the users
This is my last reply. Please tell us what the report will contain. Stuff from inside a database, server information or just text? If you do not explain yourself clearly you will not get any help. We're not here to figure out what your problem is AND solve it. We're here to give advice for clearly defined specific problems you are having.
I thought I gave enough information already... stating MYSQL is the database and output can be downloaded on pdf or excel format. And Im just asking for suggestion how to do this.
I thought I gave enough information already... stating MYSQL is the database and output can be downloaded on pdf or excel format. And Im just asking for suggestion how to do this.
i think the below code may help you.the below code can be used to export the
datas from mysql to excelsheet export format.
/*
Make a top line on your excel sheet at line 1 (starting at 0).
The first number is the row number and the second number is the column, both are start at '0'
*/
xlsWriteLabel(0 ,0,"List of car company.");
// Make column labels. (at line 3)
xlsWriteLabel(2 ,0,"No.");
xlsWriteLabel(2 ,1,"Company");
$xlsRow = 3;
// Put data records from mysql by while loop.
while($row=mysq l_fetch_array($ result)){
Comment