A Function That Returns a Value : Return Value : Functions PHP Source Code


PHP Source Code » Functions » Return Value »

 

A Function That Returns a Value






<html>
<head>
<title>A Function That Returns a Value</title>
</head>
<body>
<?php
function addNums$firstnum, $secondnum) {
     $result = $firstnum + $secondnum ;
     return $result;     
}

print addNums(3,5);

?>
</body>
</html>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Return Value