Help for this page

Select Code to Download


  1. or download this
    while (<CONF_ID>){
       my ($confID, $confPIN) = split ' ';
       next unless defined $confID;
       ...
    }
    
  2. or download this
    while (<CONF_ID>){
       my ($confID, $confPIN) = split ' ';
       $confID = '' unless defined $confID;
       ...
    }