php get all date by year month code example
Example 1: php grab month from date
$month = date("m",strtotime($mydate));
Example 2: get month days in php
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);
$month = date("m",strtotime($mydate));
echo cal_days_in_month(CAL_GREGORIAN, 8, 2009);