i have a date coming from a script (of which i don't have control over) and i have to convert a value passed via a url into a date...
url.php?day=12&month=2&year=2004
i thought this worked, as i was only testing with this month, but it only works with current time information...
$newmonth = strtotime($month);
$newm=date('F', $newmonth);
so, i'm not sure how to make this conversion...or should i just write something wonky like...
if ($month == '1') echo "January", etc.
but that can't be it...???
help...v