Mega Code Archive

 
Categories / Php / Functions
 

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>