View Single Post
ישן 24-01-06, 15:37   # 16
Ori The Man
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: חיפה
גיל: 34
הודעות: 3,694
שלח הודעה באמצעות MSN אל Ori The Man Send a message via Skype™ to Ori The Man

Ori The Man לא מחובר  

עשיתי עכשיו ככה
PHP קוד:
$filename=$_GET["file"];
$dir="log/";
$file $dir.$filename;
header('Content-type: application/txt');
header('Content-Disposition: attachment; filename='.$file.'');
readfile($file); 
ואותו דבר
  Reply With Quote