Date: 11/24/07 (PHP Community) Keywords: no keywords Need your help guys! ---------------------------------------------------- header("Pragma: cache"); header("Content-type: application/force-download"); header("Content-Transfer-Encoding: Binary"); header("Content-length: ".$this->getSize()); header("Content-disposition: attachment; filename=\"".$name."\""); ... $bytes_number = 1024; ... while ($bytes_already_read < $file_size) { $bytes = fread($file_handle, $bytes_number); for ($i=0; $i
|