9 lines
272 B
PHP
9 lines
272 B
PHP
<h1>Edit Post</h1>
|
|
<?php
|
|
echo $this->Form->create("Post", array("action" => "edit"));
|
|
echo $this->Form->input("title");
|
|
echo $this->Form->input("body", array("rows" => "3"));
|
|
echo $this->Form->input("id", array("type" => "hidden"));
|
|
echo $this->Form->end("Save Post");
|
|
?>
|