#!/usr/bin/perl -w use strict; use WWW::Mechanize; my $mech = WWW::Mechanize->new; my $url = "http://www.vegasinsider.com/nfl/odds/las-vegas/line-movement/jets-@-dolphins.cfm/date/9-07-08/"; $mech->get($url) or die "Can't get url"; my $data = $mech->content(); print $data;