5 lines
224 B
PHP
5 lines
224 B
PHP
<?php
|
|
header('Content-type: text/plain');
|
|
header('Content-disposition: attachment');
|
|
//todo: nice filename header('Content-disposition: attachment;filename=' . $title . '.' . $lang_code);
|
|
echo htmlspecialchars_decode($raw);
|