Using PHP foreach loop, we can list the items of an array easily. Also, sometimes we may need to give comma signs after each array. But in English grammar, we should not place the .... Read More
In this tutorial, we are going to see how to detect the browser of a user using PHP programming language. Here we are going to create our own custom PHP function which we can call .... Read More
Often Unix time format is used in programming related work. But this type of time or date format is not understandable by the human. So it should be converted into a human readabl.... Read More
In this post, we are going to see how to remove the duplicate values from an array in PHP. It may be necessary for many times to take only unique values from an array by removing a.... Read More
In this PHP tutorial, we are going to calculate the date difference between two dates. At first, we will take two dates and by using PHP we will find how many days difference betw.... Read More
In this post, we are going to see how to generate random CSS hex color code using the PHP md5() function. The PHP md5() function calculates the MD5 hash of a string. Using this fu.... Read More
In this tutorial, we are going to see how to get the width and height of an image in PHP. Getting the width and the height of an image is an easy task using PHP. PHP already has an.... Read More
In PHP, we often see the “Undefined variable” notice. The notice shows when the variable we call does not exist. In this post, we are going to see how to check if a var.... Read More