Category Archives: PHP

Generate a random password like Numbers,characters, special characters in PHP

Hi all, In this tutorial,we will discuss how to generate random passwords using php functions. This applications is widely used in web application for registration purpose. The auto password is very helpful, and the hacker can’t easy to access our password because it include characters(a-z and A-Z), numbers(0-9) and special characters(!@#$%^&*()-=+?.). The random password used… Read More »

Print all second saturday,fourth saturday and sunday between two date using php

Hi guys! In previous article we discuss how to Calculate the number of Second Saturady, Fourth Saturday and Sunday Between Two dates in PHPIn this article share how to print or display the second saturday,fourth saturday and all sunday between two date range unsing php. Consider from date and two date for performing this operations.… Read More »

Calculate the number of Second Saturady, Fourth Saturday and Sunday Between Two dates in PHP

Good Morning to all, Today we focus how to calculate number of second saturday,fourth saturday and sunday between two dates.In javascript,it’s very easy to develope this application. But in php, many users have no knowledge regarding this application or this problem. Here I explain,how to solve this problem: count the number of second saturday, fourth… Read More »

How to remove null values from array in PHP

Hi all, Today we study how to remove null values from an array.Its very important, to display all array values after removing NULL values in php code. If you have an array with NULL values but if you want to remove the NULL values from that array without loop. In PHP array_filter function helps to… Read More »