<?php
		include("../0_1.php");
		
		$sel=mysql_query("select * from tnews where news_id='1924'");
		while($row=mysql_fetch_array($sel)) {
											$title=$row["title"];
											$descr=$row["descr"];
											$mkey=$row["mkey"];
											
											$idn=$row["news_id"];
											$news_name=$row["news_name"];
											$translit=$row["translit"];
											$news_path=$row["news_path"];
											
											$news_date=$row["news_date"];
											}
		include("../design/in1.php");
		include("../design/in2.php");
		$mm1=6;
		$mm2=0;
		include("../design/menu1.php");
		include("../design/in3.php");
		
		echo "<article id='opis'>";
			echo "<h1>$news_name</h1>";
			$root="$idn".".txt";
			$f=fopen($root,"r");
			$txt1=htmlspecialchars_decode(@fread($f,filesize($root)));
			echo "$txt1";
			fclose($f);
		echo "</article>";
		
		include("../design/in4.php");
		include("../design/news.php");
		include("../design/in5.php");
		
		include("../0_2.php");
		?>