This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//create and modifying dates month | |
//creating new current date | |
$date_from = date('Y-m-01'); //first day of the current month | |
$date_to = date('Y-m-t'); //last day of the current month using t, use d for | |
//creating previous month date | |
$date_from_prev = date('Y-m-01', strtotime("first day of last month")); | |
$date_to_prev = date('Y-m-t', strtotime("last day of last month")); |
NewerOlder