xxxxxxxxxx
current month
//half name in words
date('M');
//full name in words
date('F');
//number
date('m');
xxxxxxxxxx
echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));
xxxxxxxxxx
$time=strtotime($dateValue);
$month=date("F",$time);
$year=date("Y",$time);
xxxxxxxxxx
$time=strtotime($dateValue);
$month=date("F",$time);
$year=date("Y",$time);