- or download this
print $outhandle "<!--#include virtual=\"my_link.incl\"-->\n";
open( LINKER, ">my_link.incl" );
- or download this
# yes, I am using strict - or download this
printTableRow( $outhandle, $status, $class );
# and maybe this is where you do your linkage, too:
print LINKER $linkstring if ( $need_to_link_here );
- or download this
sub printTableRow {
my ($handle,$status,$class) = @_;
...
</tr>
ROW
}
- or download this
print "\n<table border=1 width=\"100%\">\n";
- or download this
print "\n</table>\n";