in reply to fetching data from remote site
#!/usr/bin/perl -w use strict; use LWP::Simple; my $page = get("http://server/data.php"); [download]
#!/usr/bin/perl -w use strict; my $page = qx|lynx --nolist --source http://server/data.php|; [download]