File size: 1.35Kb
<?php
##########################################
##UTF-8,lang-ru,"Monospace"(regular)[10]##
##########################################
#######################################
##Системные файлы/файлы конфигурации
##Установки соединения с базой данных:
if(is_file('./sys/etc/mysql_connection.php')) { //(Если есть.
include './sys/etc/mysql_connection.php'; //Подключим
} //<<)
##Основная конфигурация программы:
if(is_file('./sys/etc/usr_conf.php')) { //(Если есть.
include './sys/etc/usr_conf.php'; //Подключим
} //<<)
#######################################
$id = intval($_GET["txt"]);
$id = mysql_real_escape_string($id);
$sql_sel = "SELECT * FROM mlb_texts WHERE text_id=$id and text_pid=0";
$sql_q = "SELECT * FROM mlb_texts WHERE text_pid=$id";
$res = mysql_fetch_array(mysql_query($sql_sel));
$qg = mysql_query($sql_q);
$plus = '';
$txt = $res["text_name"];
while($res_q = mysql_fetch_array($qg)) {
$plus .= stripslashes($res_q["text_text"]);
}
header('Content-Type: text/plain');
header('Content-Disposition: attachment; filename="text_'.$txt.'.txt"');
echo stripslashes($res["text_text"]).$plus;
?>