Rev 256 | Rev 287 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
255 | tom | 1 | <?php |
2 | |||
3 | require '../_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Forum Post', '../'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
9 | $id = $page->getGetID(); |
||
10 | $forumPost = $page->getForumPost($id); |
||
256 | tom | 11 | write('<p class="bold"><a href="index.php?parentID=' . $forumPost->category->ID . '">Back to Topics</a></p><br />'); |
12 | |||
13 | write('<h3>' . $forumPost->title . '</h3>'); |
||
257 | tom | 14 | write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>'); |
255 | tom | 15 | write('<br />'); |
16 | |||
17 | $ids = $page->findIDs('ForumPosts', 'WHERE ParentID = ' . $id . ' ORDER BY DatePosted DESC'); |
||
18 | for ($i = 0; $i < count($ids); $i++) |
||
19 | { |
||
20 | $forumPost = $page->getForumPost($ids[$i]); |
||
21 | write('<h4>' . $forumPost->title . '</h4>'); |
||
257 | tom | 22 | write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>'); |
255 | tom | 23 | write('<br />'); |
24 | } |
||
25 | |||
26 | $page->drawFooter(); |
||
27 | |||
28 | ?> |
||
29 |