I'm trying to validate street number. I want to allow user to input "/" and "-" how can I do it with codeigniter forn validation.
$this->form_validation->set_rules('StreetNo', 'Street No', 'required|alpha_numeric');
The above code is the that I'm using at the moment. Could guys please help me with this?