On 5/9/07, Harro <[EMAIL PROTECTED]> wrote: > > > I thought it would be possible to access form submited data using > $this->data['Model'] > > However I get the following error: > > Notice: Undefined index: User in E:\Server\htdocs\app\models\user.php > on line 15 > > Anyone have any ideas? Thanks, Harro
Depends... what method are you trying to access $this->data from? Some methods (like save()) you can pass $this->data as an argument. In other cases, you'll have to do $this->User->set($data); first. Best regards, Gonzalo. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" 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 -~----------~----~----~----~------~----~------~--~---
