This topic is locked

forcing uppercase letter

12/29/2007 7:38:00 AM
PHPRunner General questions
F
futo author

hello,
is there any script to force uppercase letters when adding records into table, or something like this
thanks

S
swanside 12/29/2007

You could use this

<?php

$str = "mary had a Little lamb and she loved it so";

$str = mb_convert_case($str, MB_CASE_UPPER, "UTF-8");

echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO

$str = mb_convert_case($str, MB_CASE_TITLE, "UTF-8");

echo $str; // Prints Mary Had A Little Lamb And She Loved It So

?>


Or you could use

<?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

?>