PHP: Download edilebilir text dosyaları oluşturmak

Debian Türkiye sitesinden

Download edilebilir text dosyaları oluşturmak

header("Content-type: text/plain"); // yada baska bir format :) header("Content-Disposition: attachment; filename=filename.txt"); /* - database e baglan - tabloyu sec

  • /

$result = mysql_query("SELECT * FROM table") or die(mysql_error()); while($row = mysql_fetch_array($result)) { $field1 = $row['1']; $field2 = $row['2']; $field3 = $row['3'];

echo "$field1;$field2;$field3\r\n"; }