$lowercase = "this is lower case"; $uppercase = strtoupper($lowercase); echo $uppercase;
<?php $str = "Mary Had A Little Lamb and She LOVED It So"; $str = strtoupper($str); echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO ?>