from API:
http://api.cakephp.org/class_model.html#e8844b859626edc554946480046e395f

if you try to add a $conditions parameter, do it with an array:
$conditions = array(
  'active' => 1,
  'created' => '>= 2007-03-15 00:00:00',
);

On 19 mar, 02:01, "cc96ai" <[EMAIL PROTECTED]> wrote:
> yes , i set it up already,
>
> in controller i added this variable
> $this->set('groupArray', $this->User->Group->generateList());
>
> and the view
>
>         <?php
>         echo $html->selectTag(
>      'User/group_id',
>      $groupArray,
>      null,
>      array(),
>      array(),
>      true
>    );
>         ?>
>
> now works fine.
>
> one other question is
> $this->set('groupArray', $this->User->Group->generateList());
> I try to put parameter into generateList() , which is not working
> any idea ?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to