Help for this page

Select Code to Download


  1. or download this
    open(HTMLFILE,">pingresults.html") || die "Couldn't open pingresults";
    close (HTMLFILE);
    
  2. or download this
    open(HTMLFILE, ">pingresults.html") || die "Couldn't open pingresults\
    +n";
    print HTMLFILE "$HTML\n";
    close (HTMLFILE);
    
  3. or download this
    # open(HTMLFILE, ">pingresults.html") || die "Couldn't open pingresult
    +s\n";
    print STDOUT "$HTML\n";
    # close (HTMLFILE);