Help for this page

Select Code to Download


  1. or download this
        print $outhandle "<!--#include virtual=\"my_link.incl\"-->\n";
        open( LINKER, ">my_link.incl" );
    
  2. or download this
    # yes, I am using strict
  3. 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 );
    
  4. or download this
    sub printTableRow {
       my ($handle,$status,$class) = @_;
    ...
      </tr>
    ROW
    }
    
  5. or download this
     print "\n<table border=1 width=\"100%\">\n";
    
  6. or download this
     print "\n</table>\n";