<?php$num = 120;function calc() { echo $num; }calc();?>
$num is not global and hence is not available for calc().
Previous Question Next Question
Your comments will be displayed only after manual approval.