Paste this function somewhere in the file, above where you need to use it.
<?php
function appext ($number)
{
$FinalDigit = $number(strlen($number)-1);
If ($FinalDigit == 1) $number .= "st";
else
If ($FinalDigit == 2) $number .= "nd";
else
If ($FinalDigit == 3) $number .= "rd";
else
If ($FinalDigit >= 4 || $FinalDigit == 0) $number .= "th";
else
$number = "error";
return $number
}
?>
To use it , wherever yo want the st, nd etc.. appended type this
<?php
$old_string == "27";
$new_string == appext($old_string)
echo $new_string
?>
This will output "27th" on the screen.