I am insert the table value manually as
$myinsert = Execute(“INSERT INTO mytable (…) values(…)”)How can I get the Auto Increment value which has just inserted.
SELECT AUTO_INCREMENT
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = “yourDatabaseName”
AND TABLE_NAME = “yourTableName”+