in reply to Net::FTP troubles
This can (and probably should) be:$IP="$Server{$key}";
Quotes tell perl to create a string - but the value in the server hash is already a string, so they're unnecessary. Read$IP=$server{$key};
perldoc -q quotingfor more info.
|
|---|