Thank you for your advice, will definitely look into it.
--------------- Added [DATE]1192389686[/DATE] at [TIME]1192389686[/TIME] ---------------
Given that I have a table created within the vb db, would this show the latest 6 images in a row? Sorry if the question is rather novice, all new to me. Many thanks
PHP Code:
$highlightthreads = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "highlightthread ORDER BY id DESC LIMIT 0, 6);
while ($row = mysql_fetch_array($highlightthreads)) {
echo "<img src=".$row["image"]." />";
}