I'm trying to do a delete in MYSQL doing this ...
DELETE FROM xxx WHERE name='$name' AND id != $id
it's not doing it though.
Do I have to do something like ...
DELETE FROM xxx WHERE name='$name' AND (id > $id OR id < $id) ??
I think I tried the later and it did now work either.
stumped.