Rev 169 | Rev 193 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
169 | tom | 1 | <?php |
2 | |||
3 | require '../_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Projects', '../'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
191 | tom | 9 | $ids = $page->findIDs('Projects', 'ORDER BY LastUpdate DESC'); |
10 | for ($i = 0; $i < count($ids); $i++) |
||
11 | { |
||
12 | $id = $ids[$i]; |
||
13 | $project = $page->getProject($id); |
||
14 | |||
15 | write('<h3>' . $project->title . '</h3>'); |
||
16 | write('<br />'); |
||
17 | } |
||
169 | tom | 18 | |
19 | $page->drawFooter(); |
||
20 | |||
21 | ?> |
||
22 |