19.md—/Users/yasuhiko/Desktop/06

19 記事の編集(2)

  • View [edit.ctp] を作成する
<h2>Edit post</h2>

<?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->end('Save!');
  • フォームへ移るためのリンクを作成 (index.ctp)
<?php echo $this->Html->link('編集', array('action'=>'edit', $post['Post']['id'])); ?> 

PAGE TOP



< 前へ  <<目次に戻る  次へ >