i had to check if a value (string) is in my database.
at the moment i do a
select a.email,b.vuid from user a, verteiler_user b where a.email=\''.$email.'\' and a.kid=' . $kid.' and b.vid=' . $vid . ' and a.uid = b.uid
as query with a mysql_num_rows, then check if >=1
But is it faster to do a query with limit 1; ? and check if a row is coming back ?