Good day!
I upgrade my version of mysql from mysql 4.1.10 to mysql 5.0.15. Now I used phpmyadmin to access my database using XAMPP. Now, I need to create a report generation and I have no idea how I can do that. What are the requirements and configuration I need to do? Is it a free application like a crystal reports that I can download? Or should I create my own report generation using php?
I found codes for report generation and honestly I can’ understand the whole codes because I am a beginner in using php.
Thank you in advance
How to create report generation using php codes
Started by newphpcoder, Nov 05 2010 12:45 AM
5 replies to this topic
#1
Posted 05 November 2010 - 12:45 AM
|
|
|
#2
Posted 05 November 2010 - 03:38 AM
Reports for what?
#3
Posted 06 November 2010 - 04:04 AM
Generally, PHP can be used to extract the data and format it in an HTML table.
#4
Posted 08 November 2010 - 06:57 AM
PHP can be used to print things on the website. You can create a function to print this report on the website:
or just print it immidiatly:
<?php
function report($message) {
echo $message;
}
report("Hello world");
?>
or just print it immidiatly:
<?php echo "Hello world"; ?>
#5
Posted 08 November 2010 - 08:35 AM
Takumi said:
PHP can be used to print things on the website. You can create a function to print this report on the website:
or just print it immidiatly:
<?php
function report($message) {
echo $message;
}
report("Hello world");
?>
or just print it immidiatly:
<?php echo "Hello world"; ?>
um... yes? do you know what a report generator is? what it does? just printing isn't especially hard. it is everything else around the printing itself when making a report generator that is hard. it's many levels of abstraction to think of, and to make it generic isn't either so easy...
A report generator is a software which takes a database and does a selection of fields in one or more tables and groups the data in one or more levels based on user input.
__________________________________________
I study Information Systems at Karlstad University when I'm not on CodeCall
I study Information Systems at Karlstad University when I'm not on CodeCall
#6
Posted 08 November 2010 - 08:37 AM
Orjan said:
um... yes? do you know what a report generator is? what it does? just printing isn't especially hard. it is everything else around the printing itself when making a report generator that is hard. it's many levels of abstraction to think of, and to make it generic isn't either so easy...
A report generator is a software which takes a database and does a selection of fields in one or more tables and groups the data in one or more levels based on user input.
A report generator is a software which takes a database and does a selection of fields in one or more tables and groups the data in one or more levels based on user input.
Yes.. I know that, but I didnt understand what he means with report generator. I just gave basic information on how to create such an script.


Sign In
Create Account


Back to top









