chaseman Posted February 18, 2011 Share Posted February 18, 2011 I get this error when trying to submit data: Duplicate entry '35' for key 'user_id' I can not submit data on ANOTHER row when the same user_id has been used on a DIFFERENT row. The user_id field is simply an integer field, it's at default null, and has a yes null. It stores the user_id which on the other hand is stored in a session variable. BEFORE the user_id is the con_id (contribution which is auto_increment). What do I have to set up to allow the user_id field to have the same value on different rows like this: con_iduser_idname 135a name 235a different name 335one more name Link to comment https://forums.phpfreaks.com/topic/228104-duplicate-entry-error/ Share on other sites More sharing options...
Pikachu2000 Posted February 18, 2011 Share Posted February 18, 2011 You've somehow managed to add an index to the user_id field. You'll need to drop the index to allow duplicate entries. Link to comment https://forums.phpfreaks.com/topic/228104-duplicate-entry-error/#findComment-1176277 Share on other sites More sharing options...
chaseman Posted February 18, 2011 Author Share Posted February 18, 2011 Thank you a lot, that fixed it. I didn't even notice that, I must have accidentally clicked the index button. Is there a way to double-check if things like this are being set accidentally? Link to comment https://forums.phpfreaks.com/topic/228104-duplicate-entry-error/#findComment-1176297 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.