ALL articles of PHP

How to check datatype of variable in PHP

We will share with you how to check datatype of variable in PHP. The gettype() function returns the type of a variable. Example: &l...

READ MORE

How to put the watermark in Video using PHP

 In this article, I will share with you how to put the watermark in Video in PHP. First install PHP-FFMpeg is through Composer. B...

READ MORE

How to find the key in multidimensional array using value in...

We are using the array PHP function to find a key in a multidimensional array using PHP Example: <?php $offerData = array( "0"...

READ MORE

Laravel Sanctum SPA API Authentication

In this article, I will share with you how to integrate the Sanctum API Integration #1: Install Laravel Project composer create-project -...

READ MORE

How to Generate the QR code in Laravel

In this article, I will share with you how to Generate the QR code in Laravel We are going to Configure Laravel Project. #1: Install Larav...

READ MORE

How to find last 2 months record using SQL Query

We will share with you in this article how to find last 2 months record using SQL Query SELECT *, DATEDIFF(NOW(),`created_at`)as Datedif...

READ MORE