Rev 191 |
Rev 194 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
require '../_taios.php';
$page = new Taios_Page
('Projects', '../');
$page->drawHeader();
$page->drawMiddle();
$ids = $page->findIDs('Projects', 'ORDER BY LastUpdate DESC');
for ($i = 0; $i < count($ids); $i++)
{
$id = $ids[$i];
$project = $page->getProject($id);
write
('<h3>' . $project->title . '</h3>');
write
('<table>');
write
('<tr>');
write
('<td><img src="' . $project->logoURL . '" /></td>');
write
('</tr>');
write
('</table>');
write
('<br />');
}
$page->drawFooter();
?>