If I already have a variable:
$mydate = "2004-01-19";
is there a PHP way to display "January" from this? Maybe some kind of mktime() thing that I can't find?
The MySQL getdate() is great for queries ...
$month = $mydate['month'];
... but I don't want to have to drop this into a db just to retrieve the right format. And that only works off of timestamp and not date.
If any one knows of a way to do this, I'd appreciate your help.
Thanks.