I am asking for a PHP code that can be used to change letters or words from small letters to capital letters? Please help
| SitePoint Sponsor |


I am asking for a PHP code that can be used to change letters or words from small letters to capital letters? Please help
Read the manual much? http://us3.php.net/manual/en/function.strtoupper.php
Use strtoupper function. like this
PHP Code:<?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
?>


Thanks it is working
Bookmarks