Answers for "select only month php"

PHP
5

php grab month from date

$month = date("m",strtotime($mydate));
Posted by: Guest on June-11-2020
0

php get current month first date

//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."'");
Posted by: Guest on May-12-2021
1

datetime get month php

$dateTime = new DateTime();
$month = $dateTime->format('m');
Posted by: Guest on December-15-2020

Code answers related to "select only month php"

Browse Popular Code Answers by Language