Your custom page ( assuming in your forum dir ) should look something like this :
PHP Code:
<?php
require_once('./global.php');
$results = $DB_site->query("
SELECT threadid, title FROM " . TABLE_PREFIX . " thread WHERE forumid = 213 ORDER BY title ASC
");
while ($row = $DB_site->fetch_Array($results))
{
$id = $row['threadid'];
$title = $row['title'];
eval('$threadbits .= "' . fetch_template('mypage_threadbits') . '";');
}
eval('print_output("' . fetch_template('mypage_main') . '");');
?>
Now create 2 templates: mypage_main and mypage_threadbits.
The mypage_main will be the main page layout, and where you want the thread titles to show, put a $threadbits in the mypage_main template.
The mypage_threadbits is the template in which the titles are shown.
Use $title to display the title and link to the thread by using $id as the threadid.