---
title: "ladda hem .txt"
type: "forum-thread"
url: "https://www.webforum.nu/amne/php/14946-ladda-hem-txt"
topic: "PHP"
topic_url: "https://www.webforum.nu/amne/php"
author: "aha"
published: "2000-11-08T21:24:00.000Z"
updated: "2000-11-09T19:06:00.000Z"
replies: 2
views: 258
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/php/14946-ladda-hem-txt"
---

# ladda hem .txt

## #1 — aha, 2000-11-08T21:24Z

Finns det någon möjlighet att genom php automatiskt starta en nerladdning av en .txt fil  istället för att få den visad i webläsaren?

Permalänk: https://www.webforum.nu/p/14946

## #2 — Batboy, 2000-11-09T07:40Z

dl.php

```
<?
header("Content-type: application/octet-stream");
if (!readfile($file))
{
// download error!
}
else
{
// download successful!
}
?>
```

\<a href="dl.php?file=test.txt"\>test.txt\</a\>

Eller?

/j

\[Redigerat av Batboy den 09 nov 2000\]

Permalänk: https://www.webforum.nu/p/315901

## #3 — aha, 2000-11-09T19:06Z

Tackar.

Permalänk: https://www.webforum.nu/p/315902

---

Tråden på webben: https://www.webforum.nu/amne/php/14946-ladda-hem-txt
