Is it possible to insert a row, but only if one of the values already in the table does not exist?
I\'m creating a Tell A Friend with referral points for an eco
I'm not sure if I got it, but what about a
try { mysql_query($sql); } catch(Exception $e) { }
combined with an unique field index in MySQL?
if it throws an exception then you know that you got a duplicated field. Sorry if that don't answer your question..