in reply to objects in cgi

oh I see... well then do this instead of CGI::Dump():
my $cgi = CGI->new; use Data::Dumper; printf "<xmp> %s </xmp>", Dumper($cgi);

Replies are listed 'Best First'.
OT: tag xpm
by IlyaM (Parson) on Dec 23, 2001 at 16:57 UTC
Re: Re: objects in cgi
by hotshot (Prior) on Dec 23, 2001 at 16:19 UTC
    sorry about the ignorance, but what does that code you gave do, and can you explain or tell me where can I find some explaination about what is this thing (object).

    Hotshot
      it just prints out everything that CGI.pm has figured out from the POST/GET request to your CGI program... this way we can see the "guts" of CGI.pm instead of making use of its pretty Dump function.

      If you don't know about Data::Dumper, you are missing a module that is possibly one of the most useful ever written for Perl.