Subversion-Projekte lars-tiefland.cakephp

Revision

Revision 7 | Revision 11 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <meta name="author" content="Webagentur Niewerth">

        <title>Ohne Titel 3</title>
</head>

<body>
<h1>Blog posts</h1>
<table>
        <tr>
                <th>Id</th>
                <th>Title</th>
                <th>Created</th>
        </tr>

        <!-- Here is where we loop through our $posts array, printing out post info -->

        <?php foreach ($posts as $post): ?>
        <tr>
                <td><?php echo $post['Post']['id']; ?></td>
                <td>
                        <?php echo $html->link($post['Post']['title'], 
"/posts/view/".$post['Post']['id']); ?>
                </td>
                <td><?php echo $post['Post']['created']; ?></td>
        </tr>
        <?php endforeach; ?>

</table>
</body>
</html>