
06.07.2009, 23:46
|
|
Постоянный
Регистрация: 25.03.2008
Сообщений: 670
Провел на форуме: 4137635
Репутация:
2407
|
|
PHP код:
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename="db.txt"');
header('Content-Transfer-Encoding: binary');
header('Content-Type: application/octet-stream');
readfile('db.txt');
|
|
|