foreach内のInvalid valuableエラーを解決したいです。
CakePHPでデータベースからusernameを検索機能を使い表示させる機能を作成しているのですが、
Notice (8): Undefined variable: users [APP/View/User/find.ctp, line 6]
Warning (2): Invalid argument supplied for foreach() [APP/View/User/find.ctp, line 6]
というエラーで止まっています。
かなり初歩的なエラーだとは思うのですが、解決方法をご教授頂けると幸いです。
<div class="row-fluid">
<div class="span9">
<table class="table">
<?php foreach($users as $user): ?>//////エラー箇所
<tr>
<td><?php echo h($user['users']['id']); ?></td>
<td><?php echo $this->Html->link($user['users']['username'],'/users/find/');?></td>
</tr>
<?php endforeach;?>
</table>
</div>
<div class="span3">
<div class="well" style="margin-top:20px;">
<?php echo $this->Form->create('Users',array('url'=>'find')); ?>
<fieldset>
<legend>Search user</legend>
</fieldset>
<?php echo $this->Form->input('username', array('label' => 'Enter Username', 'class' => 'span12', 'empty' => true)); ?>
<?php echo $this->Form->end('Search'); ?>
</div>
</div>