LPMJ Example 5-2 (Click on the icon to view the source for copy and pasting)
<?php
echo fix_names("WILLIAM", "henry", "gatES");

function fix_names($n1, $n2, $n3)
{
	$n1 = ucfirst(strtolower($n1));
	$n2 = ucfirst(strtolower($n2));
	$n3 = ucfirst(strtolower($n3));
	return $n1 . " " . $n2 . " " . $n3;
}
?>