http://www.perlmonks.org?node_id=77595


in reply to Re: variables not posting?
in thread variables not posting?

That did help, thanks. I was wondering if somemonk could explaine why that worked, and why I needed to do that. Stuffy

Replies are listed 'Best First'.
Re: Re: Re: variables not posting?
by epoptai (Curate) on May 03, 2001 at 11:38 UTC
    When you declare %fields inside the scope of the foreach $item (@pairs) loop with my, its contents are private to that loop. Then you try to access %fields after the loop, but it doesn't contain anything since you're outside the closing bracket (scope) of the for loop.

    -w and use strict tell of such errors.

Re: Re: Re: variables not posting?
by busunsl (Vicar) on May 03, 2001 at 11:39 UTC
    With your my declaration in the foreach loop you declared the hash locally.
    So the values you put into it weren't known outside.

    With using strict something like this can't happen because perl will give you an error.

    Have a look here for something more on my.
    You can also do a Super Search