Help for this page

Select Code to Download


  1. or download this
    ##### saves data to file
    open (FILE,">/home/league/currentHeader.txt") or die "cannot open file
    ...
    flock (FILE, 2) or die "cannot lock file exclusively: $!";
    print FILE param('head');
    close(FILE);
    
  2. or download this
    $heado = new CGI;
    $headt=$heado->param('head');
    ...
    flock (HEAD, 2) or die "cannot lock file exclusively: $!";
    print HEAD $headt;
    close(HEAD);