- or download this
print $q->header('text/html');
print $q->start_html(-title=>$node,
-author=>'schmidtd@co.delaware.pa.us',
-BGCOLOR=>'white');
- or download this
print $q->header('text/html'),
$q->start_html(-title=>$node,
-author=>'schmidtd@co.delaware.pa.us',
-BGCOLOR=>'white');
- or download this
foreach(@lines){
print $_;
}
- or download this
my $content;
foreach(@lines){
$content .= $_;
}
print $content;
- or download this
print join "\n",@lines;