<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>
|