A Function That Returns a Value
<html>
<head>
<title>A Function That Returns a Value</title>
</head>
<body>
<div>
<?php
function addNums( $firstnum, $secondnum ) {
$result = $firstnum + $secondnum;
return $result;
}
print addNums(3,5);
?>
</div>
</body>
</html>
Related examples in the same category