I would like to display the month in uppercase letters. I figured the easiest way to do that would be to use "strtoupper()" Here's what I've got running in the index.php template:
<?php
$tempdate = the_time('F');
strtoupper($tempdate);
echo($tempdate);
?>
Alternately I've tried
<?php
strtoupper(the_time('F'));
?>
but no dice.