Is there an easy way to change $month = "July"; so that $nmonth = 7 (07 would be fine too).
I could do a case statement, but surely there is already a function to convert?
EDIT:
I wish I could accept multiple answers, cause two of you basically gave me what I needed by your powers combined.
$nmonth = date('m',strtotime($month));
That will give the numerical value for $month.
Thanks!