Hey,
I was just wondering how it's possible to determine what ending a number should have (st, nd, rd, th) using a PHP function, and how to display the appropriate ending.
Thanks.
YOu can use substr() to look at the last digit of the number, and use the result in a switch() statement.