STING TO UPPER PHP code example
Example 1: php change sting to caps
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
Example 2: strtoupper php
string strtoupper ( $string )
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
string strtoupper ( $string )