Welcome Guest, Not a member yet? Register   Sign In
new with codeigniter
#15

[eluser]kiga[/eluser]
is this

Code:
// validation fields
    function _set_fields(){
        $fields['id'] = 'id';
        $fields['name'] = 'name';
        $fields['gender'] = 'gender';
        $fields['dob'] = 'dob';
        
        $this->validation->_set_fields($fields);
    }
// validation rules
    function _set_rules(){
        $rules['name'] = 'trim|required';
        $rules['gender'] = 'trim|required';
        $rules['dob'] = 'trim|required|callback_valid_date';
        
        $this->validation->set_rules($rules);
        
        $this->validation->set_message('required', '* required');
        $this->validation->set_message('isset', '* required');
        $this->validation->set_error_delimiters('<p class="error">', '</p>');
    }


Messages In This Thread
new with codeigniter - by El Forum - 04-13-2011, 01:44 PM
new with codeigniter - by El Forum - 04-13-2011, 02:02 PM
new with codeigniter - by El Forum - 04-13-2011, 04:57 PM
new with codeigniter - by El Forum - 04-14-2011, 08:47 AM
new with codeigniter - by El Forum - 04-14-2011, 11:07 AM
new with codeigniter - by El Forum - 04-14-2011, 02:11 PM
new with codeigniter - by El Forum - 04-14-2011, 03:39 PM
new with codeigniter - by El Forum - 04-14-2011, 03:43 PM
new with codeigniter - by El Forum - 04-14-2011, 04:02 PM
new with codeigniter - by El Forum - 04-14-2011, 04:07 PM
new with codeigniter - by El Forum - 04-14-2011, 04:14 PM
new with codeigniter - by El Forum - 04-14-2011, 04:17 PM
new with codeigniter - by El Forum - 04-14-2011, 04:29 PM
new with codeigniter - by El Forum - 04-14-2011, 04:43 PM
new with codeigniter - by El Forum - 04-14-2011, 04:55 PM
new with codeigniter - by El Forum - 04-14-2011, 06:43 PM
new with codeigniter - by El Forum - 04-14-2011, 08:52 PM
new with codeigniter - by El Forum - 04-15-2011, 12:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB