Create Charts Using PHP and MongoDB
https://www.pluralsight.com/guides/create-charts-using-php-and-mongodb
Introduction
Most enterprise apps currently use relational databases like SQL, MariaDB, or MySQL due to their popularity and stable nature. However, developers face issues when they try to scale such databases. Furthermore, considering the recent breed of web applications that handle large data sets, developers are constantly looking for more scalable databases. This has attributed to the rise of non-relational (NoSQL) databases. One such database that has become really popular is MongoDB.
In this tutorial we will follow a step-by-step approach to create charts using data stored in a MongoDB database. We will use the PHP scripting language to connect to the database and fetch the data, which would then be used to render the chart.
We picked PHP over other similar languages because it comes with a MongoDB driver that connects it to the database. If you need to add more firepower in your web application, you can also use Node.js.
Prerequisites
For creating charts using PHP and MongoDB, you need the following to be downloaded and installed on your system:
XAMPP
MongoDB
PHP driver for MongoDB
Composer
Including Dependencies
To render FusionCharts in PHP using MongoDB, we need to include the following dependencies:
FusionCharts Suite XT: Download FusionCharts Suite XT zip file and store all the extracted script files in a new folder inside the project folder, as shown below.
html
FusionCharts PHP Wrapper: Extract the FusionCharts PHP Wrapper and save the
fusioncharts.php
file inside the same folder created in the previous step for keeping the script files.
php
PHP Library for MongoDB (Details): Include the
autoload.php
file that is required for using MongoDB with PHP.
php
Establishing and Validating Database Connection
Once we've added dependencies, we can establish the connection with our database to fetch data for the chart.
php
Fetching Data and Rendering the Chart
Now that we have established the connection to our database, we will fetch data for our chart.
Here's quick look at our chartData
collection in myProject
database which we will be using to render the chart.
Given below is the PHP code for fetching data from our database:
php
After the above code is executed successfully, $data
will hold data fetched from our database. We will now form an associative JSON array for the chart.
FusionCharts understands both XML and JSON data formats. Since we will be using JSON, we will now append the data (fetched from database in the $data
variable) along with FusionCharts chart configuration and parse the end result as an associative JSON array.
Given below is the PHP code needed to append the chart data fetched from the database:
php
Every chart displayed on a web page is rendered within a unique HTML container. We will be using the <div>
element for creating the HTML container for our chart.
Given below is the code for creating the chart container:
html
Now that we have the JSON data and chart container in place, we will create the FusionCharts instance and call render method to render the chart.
Chart instance includes details needed to render the chart, like the chart type, chart ID, chart dimensions, the HTML container ID, and so on, will be passed to this chart instance.
php
Conclusion
If you have followed the above steps, then you should have a working chart with you now. Your output should be like the image shown below:
If you are having trouble rendering the chart, you can download the source code from this GitHub repo.
Got questions? Feel free to say hi on Twitter! Thank you for reading!
Last updated
Was this helpful?