in the sections_controller i use loadmodel to print username in sections/index file but i get error :
Notice (8): Undefined variable: user [APPviewssectionsindex.ctp, line 3]
public function index ()
{
$this->loadModel( User );
$user = $this->User->find( all );
$this->Section->find( threaded , array( order => array( Section.created ASC )));
$this->set( data , user );
}
段 次 页 次
<div><?php echo $user[ User ][ username ]; ?></div>