A
simple way of making all letters into capitals is to use PHP's
inbuilt function strtoupper, can be done like
this.
echo strtoupper('Hi, i am going to be all in caps in just one mo');
And it will print ...
HI, I AM GOING TO BE ALL IN CAPS IN JUST ONE MO
