Source code for:
print_mutiger.php
<html>
<head>
<title>Untitled</title>
</head>
<body>
<?php
/*
====================================================================
prtTiger = Function is to print the name of the sport
====================================================================
*/
FUNCTION prtTiger($text){
PRINT ("<h1> MU $text Rules!</h1> <br> \n");
}
$sport="volleyball";
prtTiger("$sport");
?>
</body>
</html>
|