Source Code : Declaring a Function That Requires Arguments
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Declaring a Function That Requires Arguments
<html>
<head>
<title>Declaring a Function That Requires Arguments</title>
</head>
<body>
<?php
function printBR( $txt ) {
print ("$txt<br>
");
}
printBR("This is a line");
printBR("This is a new line");
printBR("This is yet another line");
?>
</body>
</html>
Thank with us