Hello!
How do I make so lower cases transforms to upper cases in a variable please?
$var = "This is a SenTence"; $var = strtoupper($var); echo $var;
will print:
THIS IS A SENTENCE
Thanks for the help.