Mega Code Archive
Categories
/
Perl
/
CGI
Code to Accept Input with the CGI Module
#!/usr/bin/perl -T use strict; use CGI qw/:standard/; print header, start_html('Hello'), start_form, "Enter your name: ",textfield('name'), submit, end_form, hr, end_html; exit;