A blog & community for non-professional web designers, programmers, webmasters, and other web savvies.

Uppercase Text

February 28, 2011 - 12:00am -- Thomas

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.
Tags: 
Forum Board: 

@IceCaves on Twitter

    Stay Connected

    Twitter Facebook Tumblr Google+ Glaciallis Google RSS

    *Follow us on Twitter or Facebook to also follow minor site updates that don't make it to the homepage news.