gistfile1.txt function getthemonth ($date){$firstday = date('Y-m-01', $date);$lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day"));return $lastday;}
function getthemonth ($date) { $firstday = date('Y-m-01', $date); $lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day")); return $lastday; }