Function Requiring Two Arguments : Return Value : Functions PHP Source Code


PHP Source Code » Functions » Return Value »

 

Function Requiring Two Arguments



<html>
<head>
<title>Function Requiring Two Arguments</title>
</head>
<body>
<?php
function fontWrap$txt, $size ) {
    print "<font size="$size">$txt</font>";  
}

fontWrap("call 1<br>",5);
fontWrap("call 2<br>",3);
fontWrap("call 3<BR>",3);
fontWrap("call 4<BR>",3);
?>
</body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Return Value