Saturday, February 26, 2011

Re: CakePHP form validation before sending post to the requested controller function

I solved the issue by using implode(), but my errors are no longer displaying below my form fields. Errors are displaying in the default layout... Hmmm.. Anyhow here is my working code:

...else {
 $errors = $this->Plan->invalidFields();
 $error_messages = implode(' ',$errors);
 $this->Session->setFlash($error_messages);
              $this->redirect('/'); ...

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: