Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
any help would be most appreciated thanks#!/usr/bin/perl BEGIN { $|=1; print "Content-type: text/html\n\n"; use CGI::Carp('fatalsToBrowser'); } use CGI; use LWP::Simple; $q= new CGI; $my_data=$q->param('set'); $lower=1000; $upper=2000000; $random = int(rand( $upper-$lower+1 ) ) + $lower; $filename="file$random.jpg"; getstore($my_data,"../temp/$filename");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: getstore problem
by Corion (Patriarch) on Jan 25, 2005 at 13:49 UTC | |
|
Re: getstore problem
by blazar (Canon) on Jan 25, 2005 at 14:32 UTC |