http://qs321.pair.com?node_id=179273

peacemaker1820 has asked for the wisdom of the Perl Monks concerning the following question:

HI Monks!
This is the code I have so far:
print "HTTP/1.0 200 OK\n"; print "Content-Type: text/html\n\n"; print "<HTML><HEAD><TITLE></TITLE></HEAD><BODY>"; use CGI; use LWP::Simple; use URI::URL; $url = url('File_Containing_form'); $url -> query_form(text1=>'my_name', text2=> 'my_lastName); $html = get($url); print $html; print "</BODY></HTML>"

When this script executes, I have a form that i retrieved from another file. How can I put my own values in this new form when it loads?

Thanks brothers