as I create a new row of data into mysql, the primary key of the table gets generated via AUTO INCREMENT right then and there. In the next step in my php script I want to pull that primary key (SELECT) from that latest row of data I just created. How do I do that? do I have to use another set of unique data from other columns in that same row, like date and time maybe so mysql can reference only the row I want it from?