Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
hello,is there any script to force uppercase letters when adding records into table, or something like thisthanks
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?>