Schau mal hier:
http://www.technoguide.de/location/wwwboardclub1.php
zum Verständniss:
So sieht das Original aus:
http://www.talk-netz.de/viewforum.php?f=57
Code: Alles auswählen
$result = mysql_query( "SELECT forum_id, topic_title, topic_replies, topic_views, topic_id FROM technoforum_topics WHERE forum_id=57 ORDER BY topic_title");
while ($row = mysql_fetch_array($result))
{
$clubname = "$row[topic_title]";
$clubname = eregi_replace ("wie, wo, was!!!","",$clubname);
$clubname = explode("-", $clubname);
$club = $clubname[0];
$stadt = $clubname[1];
echo "<tr onmouseover=\"setPointer(this, '#3B3B3B')\" onmouseout=\"setPointer(this, 'black')\" valign=top>
<td><a href=\"http://www.talk-netz.de/viewtopic.php?t=$row[topic_id]\"><strong>";
echo $club;
echo "</strong></a></td>";
echo "<td align=left>$stadt</td>";
echo "<td align=left>($row[topic_replies])</td>";
echo "<td align=left>($row[topic_views])</td></tr>";
}
?>