Am I able to convert text into capitals through the use of PHP?
+Rep for whoever trys to/helps me.
Thanks,
Oli
EDIT:
Found the code needed. For people who are after it:-
PHP Code:<?php$copy = "Text to be converted into capitals!";
$str = "$copy";
$str = strtoupper($str);
echo "$str";?>





Reply With Quote




