Controller
[php]
<?php
class PostsController extends AppController {
public $helpers = array(‘Html’, ‘Form’); //ヘルパー使いますよ
public function index() {
$this->set(‘posts’, $this->Post->find(‘all’)); // posts変数をviewで使うよ Postのデータを全部取得するよ
}
}
[/php]
Viwe
[php]
<ul>
<?php foreach ($posts as $post) : ?> // foreachでぐるぐると取得するよ
<li>
<?php
// debug($post);
echo h($post[‘Post’][‘title’]);
?>
</li>
<?php endforeach; ?> // foreachでぐるぐると取得の締め
</ul>
[/php]