ユーザーコントローラー
public function profile()
{
$this->set('profile', $this->User->find('all'));
}
profile.ctp
<?php
echo $profile['User']['name']; // Where user is the model and name is the name field in db.
?>
私は何か間違ったことをしていることを知っていますが、それに対する良い解決策を見つけることができませんでした.