View Single Post
ישן 01-07-12, 22:38   # 1
Bittan
חבר מתקדם
 
Bittan's Avatar
 
מיני פרופיל
תאריך הצטרפות: Jul 2011
הודעות: 458

Bittan לא מחובר  

הורדה של קבצים מד התקדמות

עשיתי הורדה בצורה הבאה וזה לא מציג לי מד התקדמות
זה הקוד:
PHP קוד:
$files "../".$folder;
if (
file_exists($files)) {
 
header ("Content-Type: application/octet-stream");
 
header ("Accept-Ranges: bytes");
 
header ("Content-Length: ".filesize($files));
 
header ("Content-Disposition: attachment; filename=".$name); 
 
ob_clean();
     
flush();
 
readfile($files);
exit;

תודה רבה.
  Reply With Quote