Hi,
When I try to add a new record to my table i get this weird error.
Error MySQL said: Duplicate entry '127' for key 1
What can I do to fix this ?
Thanks,
jeroen
Simple: don't try to insert a duplicate entry in a primary key column :-)
You have either defined a field to be a primary key or you have made some other unique contraint on the column that you are trying to insert '127' into.