Find out last date of the Month in PHP

Sep 05

Its very easy to find out last date of current month in PHP. There is one PHP function date it has one parameter t when its used it return number of days in the given month. for e.g. if its january,2010 and you use date(‘t’) it will return 31. if you write down date(‘t-M-Y’) it will return...

Read More