A nice little way of making all letters into capitals is to use PHP's inbuilt function strtoupper, like so.
echo strtoupper('Hi, i am going to be all in caps in just one mo');
Will print ...
HI, I AM GOING TO BE ALL IN CAPS IN JUST ONE MO
Feb 27 2008
A nice little way of making all letters into capitals is to use PHP's inbuilt function strtoupper, like so.
echo strtoupper('Hi, i am going to be all in caps in just one mo');
Will print ...
HI, I AM GOING TO BE ALL IN CAPS IN JUST ONE MO