<?php
		include("../0_1.php");

		
		$sel=mysql_query("select * from tnews where news_id='1'");
		while($row=mysql_fetch_array($sel)) {
						$idn=$row["news_id"];
						$name=$row["news_name"];
						}
						
		$mm0=2;
		include("../sdesign/in1.php");
		echo "О студии | Новости";
		include("../sdesign/in2.php");
		include("../sdesign/in3.php");
		$mm1=6;
		include("../sdesign/menu1.php");
		include("../sdesign/in4.php");
		include("../sdesign/menu2.php");
		include("../sdesign/in5.php");
		echo "<h1>$name</h1>";

		echo "<table border='0' cellpadding='5' cellspacing='0' align='center' width='100%'>";

			echo "<tr>";
				echo "<td>";
					$root="$idn".".txt";
					$f=@fopen($root,"r");
					$txt1=htmlspecialchars_decode(@fread($f,filesize($root)));
					echo "$txt1";
					@fclose($f);
				echo "</td>";
			echo "</tr>";
		
		echo "</table>";

		include("../sdesign/in6.php");

		include("../0_2.php");
		?>