Upload multiple files in PHP with example

Hi friends, in this tutorial you will learn how to upload multiple files in PHP together and store them in a folder. Multiple file uploading is a very important part of web development and it is often required while signing up on the website or in the backend of an eCommerce website or any kind … Read more

Implode and explode in PHP with example

Implode and explode in PHP are the two built-in functions of PHP. These are widely used in web applications. Sometimes, we want to insert a similar set of elements like selecting multiple dropdown values or inserting multiple checkbox values into the database in PHP. With the help of implode functions, we can do this. In … Read more

How to Send SMS in PHP using Fast2SMS API

In this tutorial, I will explain how to send SMS in PHP using fast2sms API in a step-by-step process. SMS sending is a very important part of any kind of web application that provides instant information to users’ phone numbers to verify OTP and sending credentials etc. It is one of the most required features … Read more

Populate dynamic column chart in PHP using Google chart API

In this tutorial, I will explain how to populate dynamic column chart in PHP using Google chart API step by step. Google charts provide the flexibility to use the dynamic data using PHP inside the javascript code. With the help of Google chart, we can show the real-time data from the database in a graphical … Read more

Integrate Instamojo payment gateway in PHP step by step

In this tutorial, I will explain how to integrate the Instamojo payment gateway in PHP step by step. Instamojo is an online selling platform in India that provides APIs for different languages with detailed documentation that is very easy to integrate. The developers can integrate the payment gateways to their applications or websites with the … Read more

How to get last record in MySQL using PHP

Hi friends, in this tutorial we will learn how to get last record in MySQL using PHP. This is very useful and almost required in any kind of web application while creating a dynamic website or any customized software. Actually, there are two ways by which we can get the last inserted record from the … Read more