Rev 191 | Rev 194 | 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>'); |
||
193 | tom | 16 | write('<table>'); |
17 | write('<tr>'); |
||
18 | write('<td><img src="' . $project->logoURL . '" /></td>'); |
||
19 | write('</tr>'); |
||
20 | write('</table>'); |
||
191 | tom | 21 | write('<br />'); |
22 | } |
||
169 | tom | 23 | |
24 | $page->drawFooter(); |
||
25 | |||
26 | ?> |
||
27 |