$num; function make_triple($arg) { global $num; $num = $arg + $arg +$arg; thrice(); } function thrice() { global $num; echo("The value is $num"); } ?> Variable Scope