/ Published in: PHP
run as callback from formvalidation->setrules ex: $this->formvalidation->setrules('ccnumber','Credit Card #','required|maxlength[20]|callbackalphadashspace');
Expand |
Embed | Plain Text
function alpha_dash_space($str) { { $this->form_validation->set_message('alpha_dash_space', 'The %s field may only contain numeric characters and dashes.'); return FALSE; } else { return TRUE; } }
You need to login to post a comment.
