get current month records in mysql code example
Example 1: 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']));
Example 2: extract month from date in mysql
MONTH(date)
Example 3: month mysql
SELECT MONTH("2017-06-15");