I used query like this
INSERT INTO coins VALUES (NULL, '$user_ID', '$title', NOW())
now later in this same script page, I need to use value coin_ID that I just inserted in the query above. It's auto increment value so I added NULL.
how can I use this coin_ID in this same page, after I ran some checking with PHP?
thanks