Strings Php

$mixed_case_word = "Lower Case and Upper Case";
$lowercase = strtolower($mixed_case_word);
print($lowercase);
?>