in reply to Getting External HTML

use LWP::Simple;

That's a starting point. Since you're only needing to get the page from the site, LWP::Simple is probably the way to go.

use LWP;

for anything more complex. Look at Tutorial on LWP for some links to tutorials.

ALL HAIL BRAK!!!