Hi, I am using the php date function to show the user the current month as the first 3 letters of the month.
Like this: $thisMonth = date(‘M’);
Is there an easy way to get PHP to work out the next month and last month using the same function rather than write a load of “if” or “case” statements?
Cheers!