Help for this page

Select Code to Download


  1. or download this
    Photo 1: <input type=file name=photo><br>
    Photo 2: <input type=file name=photo><br>
    Photo 3: <input type=file name=photo><br>
    ...
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $cgi = CGI->new;
    my @pictures = $cgi->param('photo');
    ...
    
  3. or download this
    use strict;