Quick question (I think).

I'm POSTing data via LWP. As far as I can tell, I'm sending all the data in a very kosher manner. However, I'm getting nothing back (literally nothing... not even empty HTML tags). If I don't send any post data, I at least get an error page. At any rate, I'm sending this stuff to a server that's not mine, so I made a little test PHP page to see if I'm sending the right stuff. There are a few variables with a "." in their name (eg; ".challenge", ".md", etc.). When I dump the $POST array in my PHP script, they show up as "_challenge", "_md". Am I to assume that I'm sending the variables correctly and PHP mangles the _ & ., or can I assume that LWP is doing that before it sends them?

For giggles, here's the code.
my $ua = new LWP::UserAgent; my $req = new HTTP::Request POST => $url; $req->content_type('application/x-www-form-urlencoded'); $req->content($post); my $res = $ua->request($req); print $res->content;
I've made sure that $url and $post have the correct strings in them.

Thanks.

In reply to POST question ( . vs _) by GaijinPunch

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.