Web_links - Hauptkategorien - Übersicht 2-spaltig

Begonnen von gg, 06 Juli 2005, 20:27:58

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

gg

Hallo und guten Abend,

hat jemand von Euch schon die Übersicht mit den Hauptkategorien in 2 oder mehr Spalten aufgeteilt und könnte den Code dazu posten?

Ich glaube, dass ist so was mit foreach, aber wie das geht weiss ich nicht.
Hier der ori-Code:

OpenTable();

echo "<center><font class=\"title\"><b>"._LINKSMAINCAT."</b></font></center><br>";

echo "<table border=\"0\" align=\"center\" width=\"80%\" bgcolor=\"$bgcolor2\" cellpadding=\"10\" cellspacing=\"1\">"; #<tr><td align=\"center\" bgcolor=\"$bgcolor2\">

$result = sql_query("select cid, title, cdescription from ".$prefix."_links_categories where parentid=0 order by title");
    $count = 0;
while(list($cid, $title, $cdescription) = sql_fetch_row($result)) {
# $cresult = sql_query("select * from ".$prefix."_links_links where cid='".intval($cid)."'");
# $cnumrows = sql_num_rows($cresult);
$cnumrows = countalllinks($cid);
echo "<tr bgcolor=\"$bgcolor1\"><td><font class=\"option\"><strong><big>&middot;</big></strong> <a href=\"modules.php?name=Web_Links&amp;l_op=viewlink&amp;cid=$cid\"><b>$title</b></a></font> ($cnumrows)";
categorynewlinkgraphic($cid);
if ($cdescription) {
    echo "<br><font class=\"content\">$cdescription</font><br>";
}
else {
    echo "<br>";
}
$result2 = sql_query("select cid, title from ".$prefix."_links_categories where parentid=".intval($cid)." order by title limit 0,10");
$space = 0;
while(list($cid, $stitle) = sql_fetch_row($result2)) {
#if ($space>0) {
# echo ",&nbsp;";
# }
#            $cresult2 = sql_query("select * from ".$prefix."_links_links where cid='".intval($cid)."'");
#            $cnumrows2 = sql_num_rows($cresult2);
$cnumrows2 = countalllinks($cid);
echo "&nbsp;&nbsp;<strong><big>&middot;</big></strong>&nbsp;<font class=\"content\"><a href=\"modules.php?name=Web_Links&amp;l_op=viewlink&amp;cid=$cid\">$stitle</a> ($cnumrows2)</font><br>";
#     categorynewlinkgraphic($cid);
    $space++;
}
#if ($count<1) {
# echo "</td><td>&nbsp;&nbsp;&nbsp;&nbsp;</td>";
# $dum = 1;
# }
$count++;
#if ($count==2) {
# echo "</td></tr><tr>";
# $count = 0;
# $dum = 0;
# }
echo "</tr>";
}
#if ($dum == 1) {
# echo "</tr></table>";
# }
#elseif ($dum == 0) {
# echo "<td></td></tr></table>";
# }
echo "</table>";

$result=sql_query("select * from ".$prefix."_links_links");
$numrows = sql_num_rows($result);
$result=sql_query("select * from ".$prefix."_links_categories");
$catnum = sql_num_rows($result);
echo "<br><br><center><font class=\"content\">"._THEREARE." <b>$numrows</b> "._LINKS." "._AND." <b>$catnum</b> "._CATEGORIES." "._INDB."</font></center>";
    CloseTable();
Gabi
Herzliche Grüsse aus Berlin
Gabi
___________________________________
pragmaMX 0.1.9, 1.20.4.18
Probieren geht (manchmal) über studieren!