Help for this page

Select Code to Download


  1. or download this
    open(DLFILE, "<$file_location/$id") || Error('open', 'file');
    
    ...
    print "Content-Type:application/x-download\n";
    print "Content-Disposition: attachment;filename=$filename[0]\n\n";
    print @fileholder
    
  2. or download this
    open(DLFILE, "<$file_location/$id") || Error('open', 'file');
    
    ...
    }
    
    close (DLFILE) || Error ('close', 'file');