get month of date php code example
Example 1: php get day from date
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
Example 2: php grab month from date
$month = date("m",strtotime($mydate));
$timestamp = strtotime('2009-10-22');
$day = date('D', $timestamp);
var_dump($day);
$month = date("m",strtotime($mydate));