auto index
I've asked this before and got an answer on what to use to get the last inserted auto index, so I wrote an SQL-query like this:SELECT ID FROM personuppgifter
WHERE ID=LAST_INSERT_ID();
(ID is my column name where I use auto_increment)
but it doesn't seem to work, can anyone tell what's wrong or how I should use the "LAST_INSERT_ID()" function..
