Yeah, you can get the timestamp into a $variable and then do:
PHP Code:
$date = date("F Y",$variable);
This is the date function, of which I'm sure you're acknowledged. But you can also use it not only to get the current date, but to get the date from a timestamp.
The 'F' is the month as a full word, e.g June. The Y is a full four-digit year, e.g. 2005.
---
Also, used in conjunction with mktime(), you don't even need a timestamp, just the month and year (numerical) values:
PHP Code:
$date = date("F Y",mktime(0,0,0,$month,0,$year));
Note: mktime() is a function that creates a timestamp as a string from the variables it's given. They are as follows:
PHP Code:
mktime(hours, minutes, seconds, months, days, years)
(I think, correct me on the first three if I'm wrong anybody).
You don't need all of those values, and if you don't have them just put a '0', but you need the ones you are extracting in this case, obviously. (I.e. Month and Year).