$num

"; $num = 5; two ($num); echo "

$num

"; $num = 5; $num = three ($num); echo "

$num

"; # returning a value function three ($val) { $val = $val + 10; return $val; } ?>