Sunday, November 25, 2012

Re: Data not being saved

Here is my model code:
<?php
App::uses('AppModel', 'Model');
class Delemail extends AppModel {
 public $actsAs = array('Containable');
 public $recursive = -1;
 public $validate = array(
  'username' => array(
   'notempty' => array(
    'rule' => array('notempty'),
   ),
  ),
  'email' => array(
   'email' => array(
    'rule' => array('email'),
   ),
  ),
  'blacklisted' => array(
   'boolean' => array(
    'rule' => array('boolean'),
   ),
  ),
 );
}
?>
 

--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP
 
---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
 
 

No comments: