ok, thanks for heads up on the query_first thing. i thought that was a little weird.
i still couldnt get it to work without a while loop.
heres what worked for me:
PHP Code:
$threads = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "thread");
while ($thread = $DB_site->fetch_array($threads)) {
$most_threads .= $thread['postusername'] . "<br />";
}
thanks again
eric