programming-examples/perl/CGI/Create a form and set the method and action.pl
2019-11-15 12:59:38 +01:00

11 lines
219 B
Perl

#!/usr/local/bin/perl
use CGI;
$co = new CGI;
print $co->start_form
(
-method=>'POST',
-action=>"http://www.yourserver.com/user/cgi/cgi2.cgi"
);