
dave_deejay
Deleted
Feb 26, 2001, 12:37 PM
Post #1 of 2
(220 views)
|
Hey, Can you help me? What i want is to grab information from the address I have a script which grabs information for my other site and but it in to my Database HERE IT IS: #!/usr/local/bin/perl use strict; use CGI; use LWP::Simple; my $url = 'http://www.dcresource.com/reviews/cameraDetail.php3?cam=244'; my $ssaveas = "f:/inter-markets/gallery/db/cgi-bin/pixer/top.txt"; my $results = get ($url); my $output = ''; my ($thisweek, $lastweek, $title, $topimg, $imgalt); WHAT I WANT IS TO GRAB http://myserver.com/script.pl?cam=222 <--- i want to grab the 222(or woteva) and add it to my $url = 'http://www.any.com/script?cam=244';<-------and put it here look forward to your reply Davidd Sargent
|