How would one create two variables to represent the begining and end of the current month? I know how ot get the beginning, but the end of the current month eludes me. Here's the beginning variable:
$monthBegin = date("Y-m-d", mktime(0,0,0,date("m"),1,date("Y")));
How would I set up the current $monthEnd date format not knowing at what day the month ends?