Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
XP is just a number
 
PerlMonks  

Re: Re: variables not posting?

by stuffy (Monk)
on May 03, 2001 at 07:19 UTC ( [id://77595]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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 07: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 07: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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://77595]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.