Вот например есть новости(таблица1)
Есть комментарии (таблица2)
Как вывести только те новости, у которых в течении 3х дней появились новые комы?
ЗЫ: Двиг 3.2.2
Мод новостей который стоит
echo '<div class="bmenu"><b><a href="news/">Новости</a></b></div><div class="menu">';
$kmess = 1;
$dn = $realtime - (3 * 24 * 3600);
$req = mysql_result(mysql_query("SELECT COUNT(*) FROM `news_komm` where `time`> ".$dn." ORDER BY `time`"), 0);
$kom = mysql_query("SELECT* FROM `news` WHERE `refid` = '".$res['id']."'");
$totalkom = mysql_result($kom, 0);
$vr = $res['time'] + $set_user['sdvig'] * 3600;
$vr = date("d.m.y / H:i", $vr);
$text = $res['text'];
$count_text = mb_strlen($res['text']);
$text = mb_substr($res['text'], 0, 250);
$text = htmlentities($text, ENT_QUOTES, 'UTF-8');
$text = str_replace("\r\n", "<br/>", $text);
$text = tags($text);
if ($set_user['smileys'])
$text = smileys($text, 1);
echo '<a href="news/index.php?act=view&id='.$res['id'].'"><b>'.$res['title'].'</b></a><br/>';
echo $text.'... <small><a href="news/index.php?act=view&id='.$res['id'].'"><b>Читать полностью >></b></a>';
echo '<br/><a href="news/index.php?act=komm&id='.$res['id'].'">Обсудить</a> ('.$totalkom.') - Время: ('.$vr.')</small></div>';