Hi there again guys!
I've updated the code so for and got the following results:
PHP Code:
echo "<table>";
while(...)
{
echo "<tr></a><td>
<strong>Forum</strong> <a href=\"".$urlPath."/viewforum.php?f=".$row['forum_id']."\">".$row["forum_name"]."</td><td></a><strong>
Thread</strong> <a href=\"".$urlPath."/viewtopic.php?p=".$row['post_id']."#".$row['post_id']."\">".$row["topic_title"]."</td><td></a> by <a href=\"".$urlPath."/profile.php?mode=viewprofile&u=".$row['user_id']."\">".$row['username']."</td> </tr>";
}
echo "</table>";

since this is a loop. I would now like to make each line a different color, as the example I posted before.
Putting html in php is tricking.. I can''t used numbers or anything since I get an error when executing the script.
for example: I tried using a bg color for the tables and a fixed width. They always come up with an error that there is a missing ',' somewhere.
Bookmarks