Yes. GET Request is typically for queries to the server. You would not want to send large data sets via a GET Query.
As was mentioned , you can also see very conveniently each POST param and header that is being transmitted in your POST request to the server .
If u are using FF, there is a Network Tab under tools
for Chrome its under View->Developer Tools.
This jist of what i am saying is that first check if information is going to the server via your request.
You have to keep the Network tab open in the first place and THEN submit the data.
If the data is going to the server, then as i mentioned i hope your SSL config for the web server eg : Apache is setup properly.
As far as the Server Side script is concerned, the POST Data is accessible via STDIN handle. But for ReadParse() usage you should check this link . CGI.
Here is a really nice article on beginner CGI Programming

In reply to Re^3: Form over HTTPS by perlron
in thread Form over HTTPS by Blum

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.