נסה ככה:
PHP קוד:
$filename=$_GET["file"];
$dir="dir/";
header('Content-type: application/txt');
header('Content-Disposition: attachment; filename=".$dir.$filename."');
ואם זה לא עובד אז תחליף את השורה האחרונה ל
PHP קוד:
header('Content-Disposition: attachment; filename='$dir$filename);
בהצלחה
