Home  >  Article  >  Backend Development  >  PHP gets Mysql insert record ID

PHP gets Mysql insert record ID

WBOY
WBOYOriginal
2016-07-25 08:54:57854browse
  1. $query="INSERT INTO `testtable` (`clou1`,`clou2`) VALUES ('testvalue','test')";
  2. mysql_query($query);
  3. $query="SELECT LAST_INSERT_ID()";
  4. $result=mysql_query($query);
  5. $rows=mysql_fetch_row($result);
  6. echo $rows[0];
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn