Someone help me and tell me why this sucker isn't displaying the title of the returned page.
use LWP::Simple;
$url = '
# this will get the HTML text
$content = get($url);
# parse the Title tag from the HTML
while ($content =~ /<title.*?\/title>/gis) {
print "Getting $1<br>";
get($1);
}
Thanks
Tim
use LWP::Simple;
$url = '
# this will get the HTML text
$content = get($url);
# parse the Title tag from the HTML
while ($content =~ /<title.*?\/title>/gis) {
print "Getting $1<br>";
get($1);
}
Thanks
Tim