This script will transform all lowercase letters to uppercase letters.
<?php
/*****************
--Uppercase Text
--More PHP Scripts at
--http://icecaves.net/tags/php
*****************/
$string = "This script will change all lowercase letters to uppercase letters.";
$output = strtoupper($string);
echo "<b>String:</b> $string<br><b>Result:</b> $output";
?>Code Preview:
String: This script will change all lowercase letters to uppercase letters.
Result: THIS SCRIPT WILL CHANGE ALL LOWERCASE LETTERS TO UPPERCASE LETTERS.
Result: THIS SCRIPT WILL CHANGE ALL LOWERCASE LETTERS TO UPPERCASE LETTERS.
Forum Board:
