Help for this page

Select Code to Download


  1. or download this
    open (...) or ($errormsg = $!, $status = -1);
    
  2. or download this
    open (...) or do {
        $errormsg = $!;
        $status = -1;
    }