| Download edilebilir text dosyaları oluşturmak |
|
|
|
| Salı, 21 Ağustos 2007 | |||||||||
|
"Php ile download edilebilir text dosyaları oluşturmak.Örnegin veritabanından gelen verilerinizi bir txt dosyaya atmak..." <? 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"; } ?> Bu yazıyı web sayfanızda alıntılayın | Görüntüleme sayısı: 416
Powered by AkoComment Tweaked Special Edition v.1.4.6 |
|||||||||
| < Önceki | Sonraki > |
|---|






Yorumlar (1)


