Posts from PHP

Double Equal and Triple Equal in PHP with Difference

By Saruque Ahamed Mollick

Most of the PHP learners are in doubt on double equal and triple equal in PHP. Moreover, they are not sure where to use double equal and where to use triple equal in PHP. So, In th.... Read More

How to Parse XML Data in PHP

By Saruque Ahamed Mollick

Hi learners, today I am going to write how to parse XML data in PHP with examples. This tutorial will help you to understand the XML data structure and parsing data from each node .... Read More

Find Out What Happened On This Day PHP Script Using Hiztory API

By Saruque Ahamed Mollick

Hello Programmers, Today  In this Tutorial, I am gonna show you a cool PHP Code to show what happened on this day using Hiztory API. To understand this tutorial you should have ba.... Read More

PHP Program to Add Two Numbers Very Easily

By Saruque Ahamed Mollick

Hello Learners, It sounds quite easy to add two numbers in PHP right? PHP program to add two numbers is definitely very easy. As it does not require a bunch of knowledge. But yes t.... Read More

How To Add Watermark in Images Using PHP – Source Code

By Saruque Ahamed Mollick

Hello programmers in this PHP Tutorial I’m gonna show you how to add watermark to image using PHP. I will create a PHP file which will process two images, One image will be o.... Read More

How To Print Variable Name With Dollar Sign In PHP

By Saruque Ahamed Mollick

Echo dollar sign in PHP is very easy if you know where to use the single quote with echo statement and where to use the double quote with echo. In this tutorial, I will explain eac.... Read More

Echo and Print Statement Difference in PHP

By Saruque Ahamed Mollick

Echo and print in PHP are very similar to each other. Especially for the beginners, its difficult to figure out the difference between echo and print in PHP as both of the statemen.... Read More

Reverse A Number in PHP with Various Methods

By Saruque Ahamed Mollick

In PHP We don’t have to declare the data type of a variable. So in PHP, it is easier for us to Reverse a number using the strrev() function. Using this function we can revers.... Read More