Help for this page

Select Code to Download


  1. or download this
    $final = _upload($localfile,$destination,$filename);
        if ($final > 0)
    ...
          return 'There was an error with the file you supplied, either it
    + was of 0 bytes size or the system failed!<br /> <a href="javascript:
    +history.go(-1);" >Back</a>'.$final;
        }
    
  2. or download this
    my $destination = "path";
      my $localfile = $q->param('upload_image');
      my $filename = $q->param('upload_file');
    
  3. or download this
    sub _upload {
      my $localfile = shift;
    ...
    
      return $final;
    }