Halting
05-06-2006, 03:27 PM
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$copy = "Text to be converted into capitals!";
$str = "$copy";
$str = strtoupper($str);
echo "$str";?>
+Rep for whoever trys to/helps me.
Thanks,
Oli
EDIT:
Found the code needed. For people who are after it:-
<?php$copy = "Text to be converted into capitals!";
$str = "$copy";
$str = strtoupper($str);
echo "$str";?>