Welcome Guest, Not a member yet? Register   Sign In
validate if category exist before insert ?
#1

[eluser]Asinox[/eluser]
hi, is me again Big Grin

how i'll know if the category exist before that i save in the table of my DDBB??

Thanks Smile
#2

[eluser]xwero[/eluser]
You can do a check
Code:
function value_exists($table,$field,$value)
{
     return ($this->db->from($table)->where($field,$value)->count_all_results() == 0)?FALSE:TRUE;
}
#3

[eluser]Asinox[/eluser]
Thanks Smile




Theme © iAndrew 2016 - Forum software by © MyBB