Rev 195 | Rev 197 | 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 | |||
| 196 | tom | 9 | write('<p class="bold">Here you can find all the projects that are created by members of Tim32!</p><br />'); |
| 10 | |||
| 191 | tom | 11 | $ids = $page->findIDs('Projects', 'ORDER BY LastUpdate DESC'); |
| 12 | for ($i = 0; $i < count($ids); $i++) |
||
| 13 | { |
||
| 14 | $id = $ids[$i]; |
||
| 15 | $project = $page->getProject($id); |
||
| 16 | |||
| 17 | write('<h3>' . $project->title . '</h3>'); |
||
| 194 | tom | 18 | write('<table style="border: 0px;">'); |
| 193 | tom | 19 | write('<tr>'); |
| 194 | tom | 20 | write('<td style="border: 0px; vertial-align: top;"><img class="smiley" src="' . $project->logoURL . '" /></td>'); |
| 195 | tom | 21 | write('<td style="border: 0px;">'); |
| 22 | write('<h4>Latest Version: ' . $project->latestVersion . '</h4>'); |
||
| 23 | write('<p>' . $page->replaceBBCode($project->description . '</p>'); |
||
| 24 | write('</td>'); |
||
| 193 | tom | 25 | write('</tr>'); |
| 26 | write('</table>'); |
||
| 191 | tom | 27 | write('<br />'); |
| 28 | } |
||
| 169 | tom | 29 | |
| 30 | $page->drawFooter(); |
||
| 31 | |||
| 32 | ?> |
||
| 33 |