Help for this page
sub Pending_HTTP { my $file_write = 'Out_Stats.txt'; ... }
sub Pending_HTTP { my ($file_write) = @_; ... }
my $outfile = 'Out_Stats.txt'; ... Pending_HTTP($outfile); Print_File($outfile);