S
Shan
i have the following piece of code:
GETURL: while (<INFILE>)
{
chomp;
print "$_\n";
my $html = get($_)
...
...
}
the INFILE is a list of URLs. The code works fine for all URLs except
the ones that look like:
http://news.google.com/news?hl=en&ned=us&q=ramsey&btnG=Search+News
Does anyone know why?
Thanks
GETURL: while (<INFILE>)
{
chomp;
print "$_\n";
my $html = get($_)
...
...
}
the INFILE is a list of URLs. The code works fine for all URLs except
the ones that look like:
http://news.google.com/news?hl=en&ned=us&q=ramsey&btnG=Search+News
Does anyone know why?
Thanks