当前位置:Gxlcms > PHP教程 > PHP获取Mysql插入记录ID

PHP获取Mysql插入记录ID

时间:2021-07-01 10:21:17 帮助过:13人阅读

  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];

人气教程排行