I want to know how to finc the date when given the day of year. For example, I know the day of year (341), but how do I find out the month and day. This is what I am trying:
date("F j", mktime ( 0, 0, 0, 0, $dateval, date("Y"), 0))
My result is November 6. It is off by exactly 30 days. Is that a coincidence?
Any ideas?
clcope