|
|
| Perl Monk, Perl Meditation | |
| PerlMonks |
Re^5: Print HTML form to file using CGI.pm save methodby Anonymous Monk |
| on Aug 04, 2012 at 10:36 UTC ( #985423=note: print w/ replies, xml ) | Need Help?? |
|
But isn't it so that when you return a variable from a subroutine you return it to main scope only ? No, you return it to the caller Consider
Its better written as
And use it as $qry and $qry are not the same variable, $size and $number are not the same variable -- they each respectively have the same value, but they live in different scopes If you changed it to the new code would still work because you don't depend on global vars See Tutorials: Variable Scoping in Perl: the basics, Coping with Scoping , Mini-Tutorial: Perl's Memory Management, Lexical scoping like a fox
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||