Yikes, don't try and implement CGI.pm yourself.
See
here for more info.
Your loop is a little "dodgy", using array slices
and such. Also, the chomp() is chomping $_, which
means nothing in the context you gave it, since $_
is being set to the array index.
If you end up not using CGI.pm (ack),
rewrite the loop so that chomp actually does
something.
# iterate over the split
# placing each element in $_ along the way
my @InfoArray;
for (split(/&/, $post_info)) {
chomp; # remove newline
($dummy, $temp) = split (/=/, $_);
$temp =~ tr/+/ /;
# ack, urldecoding in a regex ?
$temp =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
push(@InfoArray,$temp);
}
But do please try
Cgi.pm...it's well equipped to
pull out the form values, do the (un)encoding of urls,
etc.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.