Help for this page

Select Code to Download


  1. or download this
    open DATABASE, $Rawdata or die "opening $Rawdata: $!\n";
    
  2. or download this
    use Fcntl qw(:flock);
    flock DATABASE, LOCK_SH or warn "Couldn't obtain shared lock: $!\n";
    
  3. or download this
      my $q = CGI->new( $param_string );
      foreach my $key ($q->param()) {
        my $value = $q->param($param);
        # ...
      }