Making a POST request to another URL from perl is easy with the  HTTP::Request::Common module:<br><br>use HTTP::Request::Common;<br>use LWP::UserAgent;<br>my $ua = LWP::UserAgent-&gt;new;<br> $ua-&gt;request(POST &#39;<a href="http://somewhere/foo">http://somewhere/foo</a>&#39;, [foo =&gt; bar, bar =&gt; foo]);<br>
<br>Cheers,<br><br>Cees<br><br><br><div class="gmail_quote">On Tue, Jul 28, 2009 at 4:57 AM, Robert Pike <span dir="ltr">&lt;<a href="mailto:roberthpike@yahoo.com">roberthpike@yahoo.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
CGI application: what&#39;s the best way to take content passed in to a perl script from a form and have that content passed on/redirected to another script? Anyone know how to accomplish this without having to tack onto the url? Thanks.<br>

<br>
<br>
      __________________________________________________________________<br>
Looking for the perfect gift? Give the gift of Flickr!<br>
<br>
<a href="http://www.flickr.com/gift/" target="_blank">http://www.flickr.com/gift/</a><br>
<br>
_______________________________________________<br>
kw-pm mailing list<br>
<a href="mailto:kw-pm@pm.org">kw-pm@pm.org</a><br>
<a href="http://mail.pm.org/mailman/listinfo/kw-pm" target="_blank">http://mail.pm.org/mailman/listinfo/kw-pm</a><br>
</blockquote></div><br>