Subversion-Projekte lars-tiefland.cakephp

Revision

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

Revision Autor Zeilennr. Zeile
6 lars 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<html>
3
 
4
<head>
5
	<meta http-equiv="content-type" content="text/html; charset=utf-8">
6
	<meta name="author" content="Webagentur Niewerth">
7
 
8
	<title>Ohne Titel 3</title>
9
</head>
10
 
11
<body>
12
<h1>Blog posts</h1>
13
<table>
14
	<tr>
15
		<th>Id</th>
16
		<th>Title</th>
17
		<th>Created</th>
18
	</tr>
19
 
20
	<!-- Here is where we loop through our $posts array, printing out post info -->
21
 
22
	<?php foreach ($posts as $post): ?>
23
	<tr>
24
		<td><?php echo $post['Post']['id']; ?></td>
25
		<td>
26
			<?php echo $html->link($post['Post']['title'],
27
"/posts/view/".$post['Post']['id']); ?>
28
		</td>
29
		<td><?php echo $post['Post']['created']; ?></td>
30
	</tr>
31
	<?php endforeach; ?>
32
 
33
</table>
34
</body>
35
</html>