Code:
<html> <head> <title></title> <body> <form name=name form method=post action=C:/inetpub/wwwroot/b.cgi> enter your name:<input name=name type=text><br> <input type=submit> </form> </body> </html>
Code:
#!/perl/bin/perl5.6.1.exe
use strict;
use CGI qw(:standard);
my $name=param("name");
print "Content-Type:text/html\n\n";
print $name;
Comment