I'm writing a mod_perl handler. Nothing exciting, just learning the art and having fun. Only I've hit a little snag-ette...

I have a form like this:

<form action="" method="post"> <input type="hidden" name="form" value="login"> name <input type="text" name="name"> password <input type="text" name="pass"> </form>
I can get the results of this form easilly using Apache::Request.
print "\nParameters:\n"; my $apr = Apache::Request->new($r); my @params = $apr->param; if (@params) { for my $param (@params) { print " $param: ", $apr->param($param), "\n"; } } else { print "NO PARAMETERS\n"; }
Which gives me:
Parameters: form: login name: username pass: password
Which is fine. However, if the URL this is posted to has a GET query string such as http://www.mine.org/handler?name=foo then I get this:
Parameters: name: foousername ## ---- an array form: login pass: password

So, obviously, Apache::Request does not differentiate between GET and POST data. However, I'd like to keep the two seperate. So my question to my fellow monks.... What would be the best way to stop my GET data and my POST data getting mixed up?

I can think of a couple of ways to do it. But I'd like to find a simple, efficient, and elegant solution.

--
TTFN, FNORD

xaphod

In reply to Preventing GET and POST from getting mixed-up by xaphod

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.