strtolower() function converts a string to all lowercase letters.
Its syntax is: string strtolower (string string) <? $sentence = "COOKING"; $sentence = strtolower($sentence); print $sentence; ?>