View Single Post
ישן 05-07-06, 12:46   # 4
lalamen
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 34
הודעות: 328

lalamen לא מחובר  

העליתי קובץ עם הקוד הבא:

PHP קוד:
<?php
$file 
$_GET['file'];
header ("Content-type: application/x-php");
header ("Content-disposition: attachment; filename=".$file.";");
header("Content-Length: ".filesize($file));
readfile($file);
exit;
?>
  Reply With Quote