12 個別記事の詳細を表示する
- Controller に view Method を作成する
public function view($id = null) { $this->Post->id = $id; $this->set('post', $this->Post->read()); }
- [view.ctp] を作成
<h2><?php echo h($post['Post']['title']); ?></h2> <p><?php echo h($post['Post']['body']); ?></p>