current month
//half name in words
date('M');
//full name in words
date('F');
//number
date('m');
$month = date("m",strtotime($mydate));
//get first day of the current month
$start = date("Y-m-1 00:00:00");
//get current date of the month
$end = date("Y-m-d H:i:s");
//query data for the current month so far
$query = $this->db_model->run_query("select column_1, column_2 from table where date_column BETWEEN '".$start."' AND '".$end."'");
echo 'Day' . date('d', strtotime($row['Date']));
echo 'Month' . date('m', strtotime($row['Date']));
echo 'Year' . date('Y', strtotime($row['Date']));
date('m');
echo date("F", strtotime(date("Y") ."-". $i ."-01"))