PHP Tutorial

How to Create a Simple Pie Chart using Google Chart API with PHP/MySQLi

This tutorial tackles on how to create a simple Pie Chart using Google Chart API with PHP and MySQLi extension OOP. Charts primary provides a statistical presentation of data within our application or systems. Google Chart API is a web service created by Google that provides graphical chart for data supplied by the user.

How to Export MySQL Database into CSV File using PHP/MySQLi

This tutorial tackles on how to export MySQL database into .csv/CSV file using PHP/MySQLi. Usually, we export MySQL database using our phpMyAdmin and it is in .sql format but if you want it in CSV format, this tutorial will help you on how to achieve this. CSV stands for Comma-separated Values which is a simple file format used to store tabular data such as database.

How to Import CSV File into MySQL Database using PHP/MySQLi

This tutorial tackles on how to import data from .csv file or CSV into MySQL database using PHP/MySQLi. CSV stands for Comma-separated Values which is a simple file format used to store tabular data such as database. As the name suggested, the data in this files are separated by commas and most of the time came from excel spreadsheets.