View Single Post
ישן 07-12-08, 15:06   # 7
Speed
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2008
הודעות: 71

Speed לא מחובר  

זה מה שעשיתי:
PHP קוד:
<?php 
header
('Content-type: text/plain'); 
header('Content-Disposition: attachment; filename="test.txt"'); 
header("Content-Length: "filesize('test.txt'));    
readfile ("test.txt");
?>
וזה לא עובד.
  Reply With Quote