Strings Php

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