How To Create Line Graph In Php Using Database
Line Chart using data from MySQL table by PHP
Line Chart with data from MySQL database table using PHP pdo and google chart library Download Zip file at end of this tutorial. Using this tutorial one more example is developed showing the historic moment of stock market data. User can see the graph showing full range of movement of stock index or can select a particular year to check the movement of that year. The chart drawn above can be displayed with live internet connection as the library is to be loaded from gstatic.com Data is collected from MySQL database table so data can be edited by using script and the same will be reflected by the Chart. We have not included this part in the present script and there are many tutorials available here one handling data using PHP and MySQL.
Using PDO : PHP Data Object File Name Details config.php MySQLi Database connection details are stored here. sql_dump.txt SQL Dump to create chart_data_column table with sample data. readme.txt Instructions on how to run the script index.php The main file to display records and the Pie chart.
Using CSV (Comma Separated Value) file : File Name Details config-pdo.php PDO Database connection details are stored here. index-pdo.php Using PDO the main file to display Pie Chart.
File Name Details index-csv.php Reading CSV file by using fgetcsv() and display chart. chart_data_line.csv Comma separated value ( csv ) file with data. Sample Line Chart in html
Without using PHP or MySQL, you can try this simple HTML and JavaScript code to display the above Line chart. Copy this code and save ( open ) as HTML file. Google Chart library is also included inside the code. DEMO of BSE Sensex historic data
1 : Collecting data from MySQL database
After connecting to database through config.php file, we will run the SQL to collect the data from MySQL table. You can read more on MySQLi and how to collect data from table.
Using PDO : PHP Data Object we can connect to MySQL and retrive the data to create the array $php_data_array. if($stmt = $connection->query("SELECT month,sale,profit,expanses, exp_fixed,exp_variable FROM chart_data_line")){ echo "No of records : ".$stmt->num_rows."<br>"; $php_data_array = Array(); // create PHP array echo "<table> <tr> <th>Month</th><th>Sale</th><th>Profit</th><th>Exp Fxd</th><th>Exp Vrv</th></tr>"; while ($row = $stmt->fetch_row()) { echo "<tr><td>$row[0]</td><td>$row[1]</td><td>$row[2]</td><td>$row[3]</td><td>$row[4]</td></tr>"; $php_data_array[] = $row; // Adding to array } echo "</table>"; }else{ echo $connection->error; }
require "config-pdo.php";// Database connection $query="SELECT month,sale,profit, exp_fixed,exp_variable FROM chart_data_line"; $step = $dbo->prepare($query); if($step->execute()){ $php_data_array = $step->fetchAll(); // echo "<script> var my_2d = ".json_encode($php_data_array)." </script>"; } 2 : Data array in PHP
Before displaying records in a table we have created an array in PHP ( $php_data_array). While displaying the records in a table we store each record inside the PHP array.
After displaying all the records in a table we have the $php_data_array[] = $row; // Adding to array $php_data_array with all the data collected from MySQL table. We can display the Json string like this.
echo json_encode($php_data_array); 3 : Transferring data from PHP to JavaScript to create the chart
By using json_encode we will create an json string which can be used to create the JavaScript two dimensional array.
echo "<script> var my_2d = ".json_encode($php_data_array)." </script>"; 4 : Adding data to Chart
Our JavaScript array my_2d stores all the data required for creating the chart. We need to display them in the format required by our Chart library.
We used parseInt() function to convert input string value to Integer. JavaScript part is here . for(i = 0; i < my_2d.length; i++) data.addRow([my_2d[i][0], parseInt(my_2d[i][1]),parseInt(my_2d[i][2]),parseInt(my_2d[i][3]),parseInt(my_2d[i][4])]);
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> // Load the Visualization API and the corechart package. google.charts.load('current', {packages: ['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { // Create the data table. var data = new google.visualization.DataTable(); data.addColumn('string', 'Month'); data.addColumn('number', 'Sale'); data.addColumn('number', 'Profit'); data.addColumn('number', 'Expanses'); data.addColumn('number', 'Exp_fixed'); data.addColumn('number', 'Exp_var'); for(i = 0; i < my_2d.length; i++) data.addRow([my_2d[i][0], parseInt(my_2d[i][1]),parseInt(my_2d[i][2]),parseInt(my_2d[i][3]),parseInt(my_2d[i][4]),parseInt(my_2d[i][5])]); var options = { title: 'plus2net.com Sale Profit', curveType: 'function', width: 600, height: 500, legend: { position: 'bottom' } }; var chart = new google.visualization.LineChart(document.getElementById('curve_chart')); chart.draw(data, options); } /////////////////////////////// </script> 5. HTML part
We can show the chart inside a <DIV> tag and place the same any where we want to display the chart.
<div id="curve_chart"></div> Using CSV file as data source
Once the php aray $php_data_array is created the rest of the code remain same. Here we are reading the chart_data_line.csv file to create the $php_data_array. Once the array is created same code can be used. Zip file below contains the chart_data_line.csv file as data source and the index-csv.php file to display the chart.
We used fgetcsv() to read csv file
$f_pointer=fopen("chart_data_line.csv","r"); // file pointer $php_data_array = Array(); // create PHP array while(! feof($f_pointer)){ $ar=fgetcsv($f_pointer); //echo print_r($ar); // print the array $php_data_array[] = $ar; // Adding to array } //print_r($php_data_array); echo "<script> var my_2d=".json_encode($php_data_array)." </script>"; Adding animation to chart
We can add options to our variable options to add animation to our chart.
var options = { title: 'plus2net.com Sale Profit', curveType: 'function', width: 800, height: 500, legend: { position: 'bottom' }, animation:{'startup':true, duration: 5000, easing: 'out', }, };
Pie Chart using MySQL database table Charts understanding Charts Pie Chart
Column Chart using data from MySQL table Pie Chart
Tutorial on using MySQL records to display in Google table chart.
This article is written by plus2net.com team.
| 14-03-2020 | |
| Hey thanks for this code you know I've been searching for this since January for our project in class thanks again more power | |
How To Create Line Graph In Php Using Database
Source: https://www.plus2net.com/php_tutorial/chart-line-database.php
Posted by: robinsonsciespoins.blogspot.com

0 Response to "How To Create Line Graph In Php Using Database"
Post a Comment