doulu4233 2014-02-08 17:39
浏览 20
已采纳

插入空行并获取最后一个id保存在php mysql中?

I have a registration form. If a user starts the form I insert a empty row in my mysql-table and get the last id like that:

$db=startConnection();
$query=" INSERT INTO form  VALUES ()";
$result=$db->query($query)
    or die($db->error);
$id=$db->insert_id;

But now I worry - isn't it possible that two users register at the same time and both get the same $id from the code above? For example, if two people hit the registration form at the same time and both "insert" queries are executed, and afterwards both people will get the same last insert_id?

  • 写回答

1条回答 默认 最新

  • dongzhi4498 2014-02-08 17:42
    关注

    PHP runs on the server and not on the clients side. Therefor once the first user submits the second submit will be executed after the first one has finise

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题