Hi i have table "User" and a Controller "users_controller.php" and i have another table called "cateogry", need to retrieve values from this table in the "listall" action(site.com/users/listall).
how can i get values from another table.
|
up vote
0
down vote
favorite
|
Hi i have table "User" and a Controller "users_controller.php" and i have another table called "cateogry", need to retrieve values from this table in the "listall" action(site.com/users/listall). how can i get values from another table.
|
||
|
|
|
up vote
1
down vote
|
To fill a select element containing categories, supposing you have a User belongsTo Category relationship :
$categories = $this->User->Category->find('list');
$this->set(compact('categories'));
echo $form->input('User.category_id');
Cake will automatically use the values contained in the echo $form->input('User.category_id', array('options' => $values_array));
|
||
|
|
|
up vote
0
down vote
|
I guess you have a hasMany relation between your User and Category models ? Then it's deadly easy.
Will retrieve every category associated with the user. Some resources that might be helpful to you : |
||
|
up vote
0
down vote
|
/models/user.php:
/controllers/users_controller.php:
/views/users/listall.ctp:
use the debug function to reveal the $users array:
Check out the documentation on containable behaviour: |
||
|
|