<?
$q=mysql_query("SELECT * FROM `news` WHERE `times` > '".$time."' ORDER BY `id` DESC LIMIT 1");
while ($news = mysql_fetch_assoc($q))
{
echo '
<div class="lines">
'.$news['title'].'
</div>
<div class="block">
<div class="row">
'.cut_text($news['text'],650,200).' <a href="/news/news.php?id='.$news['id'].'">>>></a> </br>'.times($news['time']).'
</div></div>
';
}
?>