Functions Php



Declaring a Function That Requires Arguments


function printBR( $txt ) {
     print ("$txt
\n");
}
printBR("This is a line");
printBR("This is a new line");
printBR("This is yet another line");
?>