Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    BEGIN {
        $|=1;
    
  2. or download this
        use CGI::Carp('fatalsToBrowser');
    }
    
    use CGI;
    use LWP::Simple;
    
  3. or download this
    use strict;
    use warnings;
    
  4. or download this
    $q= new CGI;
    $my_data=$q->param('set');
    $lower=1000; 
    ...
    $random = int(rand( $upper-$lower+1 ) ) + $lower; 
    $filename="file$random.jpg";
    getstore($my_data,"../temp/$filename");