Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: A Beginner Apparently Sucks With Hashes...

by CheeseLord (Deacon)
on Jul 22, 2001 at 10:28 UTC ( [id://98778]=note: print w/replies, xml ) Need Help??


in reply to A Beginner Apparently Sucks With Hashes...

I can tell you why it happens... this line right here:

%FormData = split(/=/, $Part);

Inside that foreach loop, you're overwriting the hash each time. You'll probably want to do something like this:

my ($name, $value) = split /=/, $Part; $FormData{$name} = $value;

However... there are MUCH easier ways to do parameter grabbing, and I (along with 99% of the monastery) suggest you check out and use CGI.pm, along with strict and -w, if you aren't already. Hope that helps!

Update: Added example code.

His Royal Cheeziness

Replies are listed 'Best First'.
Re: Re: A Beginner Apparently Sucks With Hashes...
by CharlesClarkson (Curate) on Jul 22, 2001 at 11:19 UTC

    Following CheeseLord's advice might lead to something like:

    #!/usr/bin/perl -w use strict; use diagnostics; use CGI qw/:standard Vars/; use CGI::Carp 'fatalsToBrowser'; my @page; my %form_data = Vars; foreach my $input_name (keys %form_data) { push @page, p( {-align => 'center'}, b($input_name), ": $form_data{$input_name}" ); } print header, html(@page);

    HTH,
    Charles K. Clarkson

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://98778]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-19 12:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found