Dear Programmers, I could not find a function to change strings into upper case , or lower case, for example "stRinG" -> "STRING"
What is the function for that ?
Thanks , Amin.
strtoupper($var) would make all chars uppercase
ucfirst($var) would make first letter uppercase
ali