Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在提交表单后立即获取 MySQL 表的值?事实上,每个提交的新表单都会在表中发布一个唯一代码,但我需要该代码将用户重新定向到包含唯一代码的特定 URL。
您可以使用last_insert_id(). 更多信息在这里。
last_insert_id()
INSERT INTO SomeTable (SomeColumn) VALUES ('SomeValue'); SELECT LAST_INSERT_ID();
根据您使用的数据访问方法,甚至可能有一个 PHP 可见的函数可以为您执行此操作。