a grand renaming so that the most significant portion of the name comes first
This commit is contained in:
8
php-practice/web-cake/html/app/views/posts/edit.ctp
Normal file
8
php-practice/web-cake/html/app/views/posts/edit.ctp
Normal file
@@ -0,0 +1,8 @@
|
||||
<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");
|
||||
?>
|
||||
Reference in New Issue
Block a user