Help for this page

Select Code to Download


  1. or download this
     sub sparaData {
    open (KOF, ">$konfil") or die "Kan inte \xF6ppna filen $konfil";
    flock (KOF, 2) or die "Kan inte l\xE5sa filen $konfil";
    ...
    $size = -s $konfil;
    return;
    }
    
  2. or download this
    sub sparaData {
        my( $konfil, $qry ) = @_;
    ...
        my $size = -s $konfil;
        return $size;
    }
    
  3. or download this
    my $qry = CGI->new;
    my $number = sparaData( "blah/blah/blah.data", $qry );
    
  4. or download this
    my $roshambo = CGI->new;
    my $size = sparaData( "blah/blah/blah.data", $roshambo );