<html> <head> <title>Passing an Argument to a Function by Value</title> </head> <body> <?php function addFive( $num ) { $num += 5; } $orignum = 20; addFive( $orignum ); print( $orignum ); ?> </body> </html>