I have the follwing snip of code that is catching posts to the same page:
# this will load the params from the form post sub loadParameters { my %requiredChecks; my $paramDescription; # grab the service param hash from the params passed in. %serviceParams = param("SERVICE_PARAMS"); $serviceName = param("SERVICE_NAME"); $serviceDescription = param("SERVICE_DESCIRPTION"); $paramDescription = param("SERVICE_PARAMETER_DESCIRPTION"); #now we have to load the parameter stuff if( $paramDescription ) { $requiredChecks{"IS_REQUIRED"} = param("IS_REQUIRED"); $requiredChecks{"IS_SELLER_DEPENDANT"} = param("IS_SELLER_ +DEPENDANT"); $serviceParams{"$paramDescription"} = %requiredChecks; # now add the params to the master list for passing throug +h. param("SERVICE_PARAMS", \%serviceParams); } }

i thought that each post woudl allow me to append the SERVICE_PARAMS with any new values that are added however with each post only the current values for that post are shown. no historical inforamtion. will this manner work for passing page state information without using cokkies? what would be a good solution if this is not?

thanks in advance,
ken;

In reply to CGI.pm param not following post by Anonymous Monk

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.