gpt4 book ai didi

php - 使用数组将数据插入数据库

转载 作者:行者123 更新时间:2023-11-30 23:08:04 25 4
gpt4 key购买 nike

我不知道为什么查询不起作用,可能是我遗漏了一个小错误。我尝试将数据插入到表列中,具体取决于它是否匹配。我知道数据在我的数组中,但我怀疑我正在写的查询给我一个错误。

这是我的代码:

$querytwo = 'INSERT INTO `' . $tablename . '` ' . ' (`' . $match_player_in_game . '`) ' . 'VALUES' . '(' . 'yes' . ')';

foreach ($player_fromsite as $match_player_in_game) {

for ($a = 0; $a < 11; $a++) {
if ($match_player_in_game == $home_players[$a]) {
// Insert a row of information into the table "example"
mysql_query($querytwo) or die(mysql_error());

} else {

}
}
}

消息正在返回 'Undefined variable: match_player_in_game'

最佳答案

你需要将你的 $querytwo 放在 for() 循环中,然后它会为你工作

关于php - 使用数组将数据插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20980749/

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