in reply to strict problem

If you're accessing a variable named "in" with curly brackets, it's probably a hash. Also, if I recall correctly, ReadParse might be trying to set a package variable. If you're determined to do this (and CGI.pm is a much better alternative), you may have better luck with use vars qw( %in );

Don't pass up the opportunity to move to the far superior CGI.pm, though.

Replies are listed 'Best First'.
Re: Re: strict
by Anonymous Monk on Mar 20, 2002 at 17:38 UTC

    It's a hash, yes - I was just getting confused (and pissed) after playing around with this - the whole script works, except for this rotten variable-declaration with strict.

    And I'll check out CGI.pm - I have it installed everywhere, anyway - thanks.