To get current month's name I can do:
$thisMonth = date(F);
How do I get the last month?
Sorry... I wish I could delete the earlier post...
$lastmonth = mktime(0, 0, 0, date("m")-1, date("d"), date("Y"));