How do I get a unix timestamp to display just the first letter of a month (eg. J F M A M)
I can get it to display the first three letters or the whole month name, but I can't find where to display just the first letter.
thanx
I don't know if you can do that.. .but you can always do:
$firstLetter = substring($monthName, 0, 1);
to get the first letter from the string.