|
In this section, we'll show you how to use FusionCharts and PHP to plot charts from data contained in a database. We'll create a pie chart to show "Production by Factory" using:
- A simple method first.
- Thereafter, we'll convert this chart to use dataURL method.
We've used MySQL database here. The database dump is present in Download Package > Code > PHPClass > DB folder. You can, however, use any database with FusionCharts including MS SQL, Oracle, Access etc.
Before you go further with this page, we recommend you to please see the previous section "Basic Examples" as we start off from concepts explained in that page.
The code examples contained in this page are present in Download Package > Code > PHPClass > DBExample folder. The MySQL database dump is present in Download Package > Code > PHPClass > DB. |
|
Before we code the PHP pages to retrieve data, let's quickly have a look at the database structure. |
|
The database contains just 2 tables:
- Factory_Master: To store the name and id of each factory (Columns : FactoryID & FactoryName ) .
- Factory_Output: To store the number of units produced by each factory for a given date.(Columns : FacrotyId, DatePro, Quantity) .
For demonstration, we've fed some dummy data in the database. Let's now shift our attention to the PHP page that will interact with the database, fetch data and then render a chart. |
|
The PHP page for this example is named as BasicDBExample.php (in DBExample folder). It contains the following code: |
<?php
include("../Includes/FusionCharts_Gen.php");
include("../Includes/DBConn.php");
?>
<HTML>
<HEAD>
<TITLE>
FusionCharts Free - Database Example
</TITLE>
<?php
?>
<SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT>
</HEAD>
<BODY>
<CENTER>
<?php
$link = connectToDB();
$FC = new FusionCharts("Pie3D","650","450");
$FC->setSwfPath("../../FusionCharts/");
$strParam="caption=Factory Output report;subCaption=By Quantity;pieSliceDepth=30; showBorder=1;showNames=1;formatNumberScale=0;numberSuffix= Units;decimalPrecision=0";
$FC->setChartParams($strParam);
$strQuery = "select a.FactoryID, b.FactoryName, sum(a.Quantity) as total from Factory_output a, Factory_Master b where a.FactoryId=b.FactoryId group by a.FactoryId,b.FactoryName";
$result = mysql_query($strQuery) or die(mysql_error());
if ($result)
{
$FC->addDataFromDatabase($result, "total", "FactoryName");
}
mysql_close($link);
$FC->renderChart();
?>
</CENTER>
</BODY>
</HTML> |
|
These are the steps that we performed in the above code: |
- Include FusionCharts_Gen.php, DBConn.php and FusionCharts.js files for easy chart rendering and database connection set up. DBConn.php contains connection parameters to connect to MySQL database.
- Connect to database thorugh connectToDB() function
- Create an object of FusionCharts PHP class for Pie 3D chart
- Set relative path of chart SWF file
- Store chart attributes in a variable $strParam
- Set chart attributes through setChartParams() function
- Fetch factory records and store in $result. The query result creates a column/field total to store chart data and another column FactoryName to store category names.
- Add data using addDataFromDatabase() function passing the column names that store chart data values and category names
- Close database connection
- Render chart by renderChart() function
|
Please go through FusionCharts PHP Class API Reference section to know more about the functions used in the above code. |
|
When you now run the code, you'll get an output as under: |
|
|
Let's now convert this example to use dataURL method. As previously explained, in dataURL mode, you need two pages:
- Chart Container Page - The page which embeds the HTML code to render the chart. This page also tells the chart where to load the data from. We'll name this page as Default.php.
- Data Provider Page - This page provides the XML data to the chart. We'll name this page as PieData.php
The pages in this example are contained in Download Package > Code > PHPClass > DB_dataURL folder. |
|
Default.php contains the following code to render the chart: |
<?php
include("../Includes/FusionCharts.php");
?>
<HTML>
<HEAD>
<TITLE>
FusionCharts Free - dataURL and Database Example
</TITLE>
<?php
?>
<SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT>
</HEAD>
<BODY>
<CENTER>
<?php
$strDataURL = "PieData.php";
echo renderChart("../../FusionCharts/FCF_Pie3D.swf", $strDataURL, "", "FactorySum", 650, 450, false, false);
?>
</CENTER>
</BODY>
</HTML>
|
In the above code, we have: |
- Included FusionCharts.js JavaScript class and FusionCharts.php that uses codes to easily render FusionCharrts
- Stroe the return value of PieData.php in $strDataURL
- Finally, we render the chart using renderChart() method using dataURL method.
|
Note: The renderChart() function used in this code is not the same with the one we used in the previous example, though they bear same name. This is FusionCharts PHP chart embedding function; please go through Using with PHP > Basic Examples to know more about it. |
PieData.php contains the following code to output XML Data. This code is similar like the Simple DB Example. The only difference is, here we do not render the chart but send the full XML as output stream. |
<?php
include("../Includes/DBConn.php");
include("../Includes/FusionCharts_Gen.php");
$link = connectToDB();
$FC = new FusionCharts("Pie3D","650","450");
$FC->setSwfPath("../../FusionCharts/");
$strParam="caption=Factory Output report;subCaption=By Quantity;pieSliceDepth=30;showBorder=1;showNames=1;formatNumberScale=0;numberSuffix= Units;decimalPrecision=0";
$FC->setChartParams($strParam);
$strQuery = "select a.FactoryID, b.FactoryName, sum(a.Quantity) as total from Factory_output a, Factory_Master b where a.FactoryId=b.FactoryId group by a.FactoryId,b.FactoryName";
$result = mysql_query($strQuery) or die(mysql_error());
if ($result)
{
$FC->addDataFromDatabase($result, "total", "FactoryName");
}
mysql_close($link);
header('Content-type: text/xml');
print $FC->getXML();
?> |
In the above code: |
- We include FusionCharts_Gen.php and DBConn.php files
- Set connection to database through connectToDB() function
- Create an object of FusionCharts PHP class for Pie 3D chart
- Set relative path of chart SWF file
- Store chart attributes in $strParam variable
- Set chart attributes using setChartParams() function
- Fetch records from database and store the query output in $result
- Pass $result to addDataFromDatabase() function to add chart data
- Write the XML to output stream
|
Please go through FusionCharts PHP Class API Reference section to know more about the functions used in the above code. |
|
When you view this page, you'll get the same output as before. |
|