Subversion-Projekte lars-tiefland.cakephp

Revision

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

Revision Autor Zeilennr. Zeile
11 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>
15 lars 5
	<meta http-equiv="content-type" content="text/html; charset=utf-8">
11 lars 6
	<meta name="author" content="Webagentur Niewerth">
7
 
8
	<title>Ohne Titel 7</title>
9
</head>
10
 
11
<body>
12
<h1>Add Post</h1>
13
<?php
14
echo $form->create('Post');
15
echo $form->input('title');
16
echo $form->input('body', array('rows' => '3'));
17
echo $form->end('Save Post');
18
?>
19
</body>
20
</html>