- or download this
#!/usr/bin/perl -w
use strict;
...
print"</form>";
print"</body></html>";
- or download this
#!/usr/bin/perl
use cgi;
$cgi=new CGI;
...
print $cgi->param('name'), <br>;
print $cgi->param('email');
print $cgi->end_html();
- or download this
#!/usr/bin/perl
use cgi;
$cgi=new CGI;
...
print $cgi->param('email');
print $cgi->end_html();