I have a forum and I got the following error when i am trying to post a new topic or reply.
Duplicate entry '1' for key 1 Insert Into floges_bodies values (1, 'erer', '1')
can anybody help?
I would appreciate an early reply.
Thanks,
harry
Well, you are trying to enter a duplicate entry. I'm assuming that the first value in your insert statement is the primary key for the table, and if so you already have an entry with a key of 1. You probably want the first value to be NULL, assuming you have an auto incrementing field as the primary key.