<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>