get month name in php code example
Example 1: get current month php
current month
//half name in words
date('M');
//full name in words
date('F');
//number
date('m');
Example 2: get month from database php
echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));