killer4all2
Gebruiker
- Lid geworden
- 26 mei 2009
- Berichten
- 449
Hoi,
Het idee is dat de nieuwe posts listen onder elkaar. Het probleem is dat het door elkaar komt te staan. zie www.united-gamers.eu, rechter zijbar. Ik ben momenteel namelijk een nieuwe template aan het scripten en wil daar dit wel oplossen. ik wil de li een background geven zodat je verschillende kleuren om en om krijgt. alvast bedankt voor jullie commentaar / tips of oplossing.
Met vriendelijke groeten,
Rowan
Het idee is dat de nieuwe posts listen onder elkaar. Het probleem is dat het door elkaar komt te staan. zie www.united-gamers.eu, rechter zijbar. Ik ben momenteel namelijk een nieuwe template aan het scripten en wil daar dit wel oplossen. ik wil de li een background geven zodat je verschillende kleuren om en om krijgt. alvast bedankt voor jullie commentaar / tips of oplossing.
Met vriendelijke groeten,
Rowan
Code:
O Server dedicated..
By admin
O Call of Duty server..
By mp3lord
O New databases..
By Prodigy
O Application cod4..
By killer4all2
Code:
<?php
$urlPath = "http://www.united-gamers.eu/forum";
include 'forum/config.php';
$table_topics = $table_prefix. "topics";
$table_forums = $table_prefix. "forums";
$table_posts = $table_prefix. "posts";
$table_users = $table_prefix. "users";
$link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect");
mysql_select_db("$dbname") or die("Could not select database");
$query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username
FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
WHERE t.topic_id = p.topic_id AND
f.forum_id = t.forum_id AND
t.forum_id != 4 AND
t.topic_status <> 2 AND
p.post_id = t.topic_last_post_id AND
p.poster_id = u.user_id
ORDER BY p.post_id DESC LIMIT 6";
$result = mysql_query($query) or die("Query failed");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<ul><a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]&p=$row[post_id]#p$row[post_id]\" TARGET=\"_blank\">" . $row["topic_title"] . "</a><br />
by: <a href=\"$urlPath/memberlist.php?mode=viewprofile&u=$row[user_id]\" TARGET=\"_blank\">" . $row["username"] . "</a><br />";
}
mysql_free_result($result);
mysql_close($link);
?>