PDA

View Full Version : Getting Posts from a specific thread


alexgeek
01-15-2008, 05:09 PM
If I were to have a custom page how would I loop through all the posts in a specific thread (the thread is predefined) and then manipulate the data.
Like:

while(loop_through_thread(234)) {
echo "<div>".$post['username'].'<br>'.$post['text'].'</div>';
}


So that it would loop through all the posts and put them into a <div>s on a page.
Is there an easy way to do this or will I have to use a query?

Opserty
01-15-2008, 06:05 PM
$q = $db->query_read("SELECT * FROM post WHERE threadid = ". $threadid ." ORDER BY dateline ASC");
while($post = $db->fetch_array($q))
{
//echo "<div>".$post['username'].'<br>'.$post['text'].'</div>';
}

alexgeek
01-15-2008, 07:30 PM
Yeah that's what I've done now.
Thanks anyway.