in reply to Re^2: Get Title ip's list browser -- suggestions for a newcomer
in thread Get Title ip's list browser

hi Discipulus i'm tested your code but i have problem show this massege
Global symbol "$ip_fh" requires explicit package name at ./run.pl line + 15. Missing comma after first argument to open function at ./run.pl line 1 +5, near "$ip_file or" Global symbol "$ip_fh" requires explicit package name at ./run.pl line + 19. Execution of ./run.pl aborted due to compilation errors.

Replies are listed 'Best First'.
Re^4: Get Title ip's list browser -- suggestions for a newcomer
by hippo (Archbishop) on Oct 30, 2017 at 21:27 UTC

    Try replacing

    open $ip_fh '<', $ip_file or die "Unable to open $ip_file for reading! +";

    with

    open my $ip_fh, '<', $ip_file or die "Unable to open $ip_file for read +ing: $!";