This is a continuation from another thread, but the content has already changed sig. from the original thread.
Trying to get the latest 6 thumbails to display under the navbar. "highlightthread" is indeed the name of the table as I forgot to add the prefix.
Here is the plugin:
PHP Code:
$highlightthreads = $db->query_read("SELECT * FROM highlightthread ORDER BY reference DESC LIMIT 0, 6);
while ($row = mysql_fetch_array($highlightthreads)) {
echo "<img src=".$row["imageurl"]." />";
}
Screenie: http://img80.imageshack.us/img80/1023/problemlf3.jpg
Last line on the navbar, I just plucked in
$highlightthreads , but to no avail. Nothing is showing up in the source either when I load forumhome so I'm sure I've gone wrong somewhere.
Any ideas? Many thanks