> Sorry, I just meant the error message I added in my controller (the
> flash message in the else clause) i.e. cakephp doesn't think there's
> anything in $this->data.

In your controller, did you try this :

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

instead of :

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

Since you say that data are POSTed, $this->data is filled. Seems that 
something is wrong in the "save" part of your code.

--~--~---------~--~----~------------~-------~--~----~
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