gpt4 book ai didi

php - 在 PHP 中使用循环将项目插入 SQL 表中

转载 作者:行者123 更新时间:2023-11-29 22:21:41 25 4
gpt4 key购买 nike

$loopCounter = 0;
while ( $loopCounter < $amount ) {
$sql = "INSERT INTO bookings VALUES (NULL, '$firstname', '$lastname', '$email', $enrolAmount, '$location', $price)";
$loopCounter += 1;
mysqli_query( $dbc, $sql );
}

所以我有一个循环来尝试将项目插入到 SQL 表中,但是当我尝试这样做时,它只会将一项插入到表中。请帮忙!

最佳答案

您有一个tinyint主键,它已达到其限制,如

所示评论中的

AUTO_INCRMENT=127。根据文档here tinyint 的最大值为 127。

你应该跑

更改表预订更改列 bookings_id bookings_id unsigned int(10) not null auto_increment 主键;

然后你很可能就没事了。

关于php - 在 PHP 中使用循环将项目插入 SQL 表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30648084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com