# for lowercase use this function # strtolower(); <?php $string = "Hello World"; $string = strtolower($string); echo $string; # output will be like this: "hello world" ?>