Hi, different Anonymous monk here. (Either that, or I have a multiple personality disorder. I wouldn't count that out.)

No matter what page shows up in the browser, it says http://mywebsite.com/cgi-bin/myscript.pl

Your form is being submitted to myscript.pl in that address via the HTTP POST method. The method usually requires key-value pairs for the query part. You should be searching what the required key-value pairs (well, not strictly pairs) are (the name and value attributes in the form you are submitting), and then read the LWP documentation on how to make a POST request with the pairs.

The result of that POST request will be the HTTP response that contains the HTML page.


In reply to Re^5: capturing dynamic page by Anonymous Monk
in thread capturing dynamic page by cliffrubinmusic

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.