I am trying to pass an array to a server connect database insert, for some reason I am only getting the first record inserted (the repeat is not looping through the array)
When I test my input I can see multiple entries into the array (before I changed the type to hidden). Any ideas as to why it is only inserting the first record in each array?
I recreated the server action file (just in case there was something funky about it). You can see here it failed twice when I had multiple values in the director_uname array, but worked without error where I only submitted a single value in the array
It is working now. The real issue is that I was using a “Now” as the seed to a random code I was saving, and it was processing too fast to change the value so it was breaking the “unique” parameter of the field in my database. Thanks everyone for the help…