NojanServer
Member
با سلام
من يك بلوك دارم كه اخبار يك موضوع خبري مثلا Topic2 رو نشون ميده، حالا چطوري ميشه كاري كرد كه همزمان كنارش اخبار Topic3رو هم نشون بده ؟
موضوع 2 | موضوع 3
---------------------------------------
خبر 1 | خبر 1
خبر 2 | خبر 2
خبر 3 | خبر 3
خبر 4 | خبر 4
خبر 5 | خبر 5
خبر 6 | خبر 6
كد بلوك هم اينه :
if ( !defined('BLOCK_FILE') ) {
Header("Location: ../index.php");
die();
}
global $prefix, $multilingual, $currentlang, $db;
if ($multilingual == 1) {
$querylang = "WHERE (alanguage='$currentlang' OR alanguage='')";
} else {
$querylang = "";
}
$content = "<table width=\"100%\" border=\"0\">";
$result = $db->sql_query("SELECT sid, title, comments, counter FROM " . $prefix . "_stories WHERE topic='2' ORDER BY sid DESC LIMIT 0,10");
while(list($sid, $title, $comments, $counter) = $db->sql_fetchrow($result)) {
$sid = intval($sid);
$title = filter($title, "nohtml");
$comtotal = intval($comments);
$counter = intval($counter);
$content .= " <tr><td align=\"right\" width=\"575\"><strong><big>·</big></strong> <a href=\"mods.php?id=News&file=article&sid=$sid\">$title</a></td></td></tr>";
}
$content .= " </table>";
?>
من يك بلوك دارم كه اخبار يك موضوع خبري مثلا Topic2 رو نشون ميده، حالا چطوري ميشه كاري كرد كه همزمان كنارش اخبار Topic3رو هم نشون بده ؟
موضوع 2 | موضوع 3
---------------------------------------
خبر 1 | خبر 1
خبر 2 | خبر 2
خبر 3 | خبر 3
خبر 4 | خبر 4
خبر 5 | خبر 5
خبر 6 | خبر 6
كد بلوك هم اينه :
if ( !defined('BLOCK_FILE') ) {
Header("Location: ../index.php");
die();
}
global $prefix, $multilingual, $currentlang, $db;
if ($multilingual == 1) {
$querylang = "WHERE (alanguage='$currentlang' OR alanguage='')";
} else {
$querylang = "";
}
$content = "<table width=\"100%\" border=\"0\">";
$result = $db->sql_query("SELECT sid, title, comments, counter FROM " . $prefix . "_stories WHERE topic='2' ORDER BY sid DESC LIMIT 0,10");
while(list($sid, $title, $comments, $counter) = $db->sql_fetchrow($result)) {
$sid = intval($sid);
$title = filter($title, "nohtml");
$comtotal = intval($comments);
$counter = intval($counter);
$content .= " <tr><td align=\"right\" width=\"575\"><strong><big>·</big></strong> <a href=\"mods.php?id=News&file=article&sid=$sid\">$title</a></td></td></tr>";
}
$content .= " </table>";
?>