Help for this page

Select Code to Download


  1. or download this
    dbmopen(%hash, $config_file, 0666) 
       or die "Couldn't open DBM: $!";
    
  2. or download this
    use NDBM_File;
    use Fcntl;
    
    tie(%hash, 'NDBM_File', $config_file, O_RDWR|O_CREAT, 0640)
       or die "Couldn't open NDBM: $!";
    
  3. or download this
    use CGI::Carp 'fatalsToBrowser';