Файл: gamele.ru/index/actions/index.php
Строк: 12
<?php
echo'
<div class="center"><div class="title_news"><h1>Новости и события</h1></div><div class="news"><div style="display:none;"></div>';
$data = mysql_query("SELECT * FROM `forum_topics` WHERE `fid` = '13' ORDER by `id` DESC LIMIT 10;");
while($row = mysql_fetch_array($data))
{
echo'<div class="news_title">'.$row['name'].' </div><br>';
echo''.$row['msg'].'';
echo"<div class=news_title><p align='right'><a class='pcv_button purple' target='new' href='http://forum.gamele.ru/13/1/{$row['id']}/1'>Обсудить</a></p></div><br>";
}
?>