> Ok, at this point
>
> http://book.cakephp.org/view/645/Acts-As-a-Requester
>
> I've got to "add some groups and users using the baked forms" so I
> type on my browser
>
> http://localhost/simpleacl/groups/add
>
> and I put the name of the group that I want to create on the form but
> when I hit submit button I see:

You don't need to fill in a form, just populate the data, eg:

$this->data['Group'] = array(
'id'=>null,
'parent_id'=>null,
'name'=>'Group'
);

$this->Group->create($this->data);
$this->Group->save();

etc etc

jon

-- 

jon bennett
w: http://www.jben.net/
iChat (AIM): jbendotnet Skype: jon-bennett

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
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