Is there a way to display the English ordinal suffix from the strftime string.
I want to output the date as November 28th 2001 but can't get the "th" to output.
I have this at the moment:
$time = time();
$time = strftime("%B %d %Y", $time);
Any clues, there doesn't seem to be any in the manual.
Cheers