chomp $field,$listname;
does not do a chomp on both scalars. It only chomps the first and then throws away the second. Instead, you want to put the scalars into a list context, like so:
chomp ($field,$listname);
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff";
$nysus = $PM . $MCF;
Click here if you love Perl Monks
In reply to Re: CGI Table Column Selection
by nysus
in thread CGI Table Column Selection
by devslashneil
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |