Просмотр поста

.
plosorejo
sadam (25.11.2011/16:39)
HI MY FRIENDES
i want modul Similar topics
And

Share this article BB Code:
just share add this code to your forum/index.php after code jump to page

///////////////**bbcode**
echo '<div class="rmenu">Share this article<br/><b>BB Code:</b><br/><input type="text" size="17" value="Check this article: [url='.$home.'/forum/index.php?id='.$id.']'.$type1["text"].'[/url], thanks"/><br/><b>Link:</b><br/><input type="text" size="17" value="'.$home.'/forum/index.php?id='.$id.'"/></div>';

/** Similar topic **/
$req = mysql_query("SELECT * FROM `forum` WHERE `type`='t' AND `refid`='$type1[refid]' AND `id`!='$id' ORDER BY `vip` DESC, `time` DESC LIMIT 5");
$total = mysql_num_rows($req);
if($total!=0){
echo '<div class="phdr">Similar topics</div><div><ul>';
while ($res = mysql_fetch_assoc($req)) {
echo ($i % 2) ? '<div class="list2">' : '<div class="list1">';
echo '<li><a href="index.php?id=' . $res['id'] . '">' . $res['text'] . '</a></li>';
echo '</div>';
++$i;}
echo'</ul></div>';
}
/////////////////////////////////