I have searched the net trying to find a simple perl script to grab the contents of a page and paste it onto a page on my site.
All i can find are XML and e-mail havesters.
I'm not a programmer so any help or directions would be greatly appreciated.
jason
1:19 pm on Feb 1, 2002 (gmt 0)
#!/usr/bin/perl use LWP::Simple; use LWP::UserAgent; print "Content-type:text/html\n\n"; $url = "http://www.domain.com/page.html"; my $ua = new LWP::UserAgent; my $res = $ua->request(HTTP::Request->new(GET => $url)); my $content = $res->content; print $content;