I'm using the alpha_numeric_spaces rule to validate letters and numbers with space, but when I use any special characters or letters like "ç", validation does not pass, is there any way around this or only by creating a special rule?
Ex:
$validator->set_rules('nome', 'Nome', 'min_length[3]|max_length[60]|alpha_numeric_spaces');