phpbar.de logo

Mailinglisten-Archive

[php] File als Download

[php] File als Download

Jochen Kaechelin php_(at)_phpcenter.de
Tue, 19 Jun 2001 14:44:52 +0200


> <?
> 	header("Content-disposition: filename=db.csv");
> 	header("Content-type: application/octetstream");
> 	header("Pragma: no-cache");
> 	header("Expires: 0");
>
> 	$crlf = "\n";
> 	$client = getenv("HTTP_USER_AGENT");
> 	if(ereg('[^(]*\((.*)\)[^)]*',$client,$regs))
> 	{
> 		$os = $regs[1];
> 		if (eregi("Win",$os)) {
> 			$crlf="\r\n";
>     		}
> 	}
>
> 	echo "Hallo";
> ?>

Also bei mir funktioniert folgender code auch mit dem IE5.5:

	header("Content-Type: application/octet-stream");
	header("Content-Disposition: inline;
filename=\"".$downloaddatei."\"");
	readfile($filename);

--
phpArbeitsgruppe in Gruendung - Jochen Kaechelin
Stuttgarter Str.3, D-73033 Goeppingen
Tel. 07161-92 95 94, Fax 07161-92 95 98
http://www.php-arbeitsgruppe.de, mailto:info_(at)_php-arbeitsgruppe.de



php::bar PHP Wiki   -   Listenarchive