When using Codeigniter form validation, does alpha allow spaces? Ex. \"Bob Smith\"
One line solution:
$this->form_validation->set_rules('field', 'Field', 'regex_match[/^([a-z ])+$/i]');
Alpha characters and space.