I am using a form parsing routine I picked up here at PM without success. I believe I must have misunderstood what it is doing I thought it was doing the equivalent of my $variable = $q->param( 'variable' ); for each param it receives but when I try to print values 2 things happen:
1)The script dies if the variable wasn't declared with my. I thought the  foreach my $str (@names) was taking care of the declarations.
2) The params are undef when I try to print them (even inside the parse_form sub. However, if I add lines like
my $date = $q->param( 'date' ); my $filet = $q->param( 'filet');
I get my params and their values. Will someone please point out whatever it is that I fail to comprehend about this process.
TIA
jg
#!/usr/local/bin/perl -wT use strict; use lib qw(/home/nolaflash/www/local_mods); use CGI ':standard'; use CGI::Carp qw/fatalsToBrowser /; use CGI::Pretty qw( :html3 ); my $q = CGI->new(); if ( $q->param() ) { parse_form(); } sub parse_form { my $sr; my @names=$q->param; foreach my $str (@names) { $sr->{$str} =$q->param($str); } print $q->header,start_html," @names $action $time $date filet = $ +filet",end_html; exit; }
_____________________________________________________
It's not my tree.

In reply to Lost Values from parse_form Sub by jerrygarciuh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.