I am having some trouble inserting into a table.
I want to insert thousands of pieces of data (data1, data2, data3) into a table only if data3 is unique to its column.
I have my table pretty much set up the way I want, with the a unique column already in place. I do not know much about how the table should be set up but I have the basics and it's working for me. My unique column in the table is the key and it's an automatic increment field. I have looked for this info and I haven't found it.
Background... I am intermediate level with PHP and MYSQL but I have several areas where I am very much a newby. I connect to the DB fine, everything is working fine. The only time this will be a problem is if a user goes to the update page a second time, it reupdates all the information over again. This is not cool.
data3 is the server url for binary data matching a *.JPG type wildcard search. The page refetches the data each time to make sure it's up to date. I only want the new findings to make it into the database.
[Edited to change spelling of incriment to increment]