I am new with codeigniter and I am working with the form_validation of it. I found a function called is_unique which looks if the value is not already in the table. But is there an opposite of this function available? That checks if the value IS once in the table?
No, there isn't one. There are 2 alternatives:
is_array()
(native PHP functions can be used as rules).