我进行了询问,在表格中插入图像链接和用户名称:
INSERT into pictures set src = image link , username = acc
I want to display that image after the query is executed (from table), or to get ID
(I tried mysql_insert_id()
, but what if 3 or more users will execute the query at the same time, which id will I get?
Thanks.