PHP Code:
mysql_query("INSERT INTO table VALUES ('NULL')");
The field is an id field that is set to auto-increment. I was wondering if it's possible to get that id# after the query is performed when you can't do a search (SELECT * FROM table WHERE ...) because there are no other unique fields except id
Thanks in advance!
|