<?php$names = fix_names("WILLIAM", "henry", "gatES");echo $names[0] . " " . $names[1] . " " . $names[2];function fix_names($n1, $n2, $n3){ $n1 = ucfirst(strtolower($n1)); $n2 = ucfirst(strtolower($n2)); $n3 = ucfirst(strtolower($n3)); return array Read More
<?phpinclude("library.php");include_once("library.php");require_once("library.php");echo "Hello world";$username = "Fred Smith";echo $username;echo str_repeat("Hip ", 2); // Repeat stringecho strtoupper("hooray!"); // String to Read More