Help for this page

Select Code to Download


  1. or download this
        
    use Config::Simple;
    $cfg = new Config::Simple();
    ...
             {
             print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";
            }
    
  2. or download this
        
    [FTP1]
        targetIP=1.1.1.1
    [FTP2]
        targetIP=10.10.10.10
    
  3. or download this
       use Config::Simple;
       $cfg = new Config::Simple();
    ...
       print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";
       $ct++;
        print " FTP$ct value: ".$cfg->param("FTP$ct.targetIP")."\n";