<?
$query = mysql_query("SELECT * FROM `news` WHERE `id` = '".$_GET['id']."'");
$new = mysql_fetch_assoc($query);
?>
<div class="information">
<div id="content">
<h1 style="margin-top: 8px; margin-left: 13px; color: #45b29d; font-size: 18px; line-height: 29px; font-weight: bold;"><? echo $new['name']; ?></h1>
<div style="margin-left: 13px;"> <? echo $new['text']; ?><br></div>
<br>
</div>
</div>