Help for this page

Select Code to Download


  1. or download this
    print "Content-Type: application/x-unknown-download_file\nContent-Disp
    +osition: attachment\; filename=\"".$fileOBJ->data('filename')."\"\nCo
    +ntent-Length: $size\n\n";
    
  2. or download this
    open(my $DLFILE, $file);
    my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
    +$blksize,$blocks) = stat($DLFILE);
    ...
    while ($bytes = read($DLFILE,$buffer,16384)) {
      print $buffer;
    }