Ok, so you don't have to use CGI.pm to write tags, but if
you don't use CGI.pm to parse the incoming parameters, you
are asking for trouble. At the very least, try something like this in your distro.pl file:
use strict;
use warnings;
use CGI qw(:standard);
print header,start_html;
if (param('Spedisci')) {
print pre(
'nome = ', param('nome'), "\n",
'conosciuto = ', param('conosciuto'), "\n",
'distro = ', param('distro'), "\n",
);
} else {
print "nothing submitted!";
}
print end_html;
Follow that link to Ovid's web course. Take the time to
read it -- it's time well invested!
jeffa
L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)
|