Category Archives: Web Development

Fetch all dates between two dates – PHP

When build an event in a calender; we want to fetch all dates between the date using php. Store the dates into a php variable fromdate and todate. Then we can fetch all dates between these fromdate and todate using for loop in php. The output is: 2017-12-01 2017-12-02 2017-12-03 2017-12-04 2017-12-05 2017-12-06

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 »