Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Rip the Results of a Form

Status
Not open for further replies.

rolotom

ISP
Oct 16, 2001
1
SA
Hi.How can i rip the results of a form just like pageripper( is doing with html. i have here a script but its not working. heres the url: Try typing a registered domain like nn.com.sa. When clicked go it doesnot display te result. The url of the script of my program:
Hoping for your help.

Thanks

Rolotom
 
I think you need to take a look an the LWP module. It will let you retrieve a web page source.

#!/usr/local/bin/perl
use LWP::Simple;
$uri = '$page_source = get("$uri");
print "$page_source\n";

HTH If you are new to Tek-Tips, please use descriptive titles, check the FAQs,
and beware the evil typo.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top