gpt4 book ai didi

php - 插入重复键更新 - 插入不会将任何内容发布到数据库中,更新会

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

我构建了一个“主表”,可以从 4 个表中获取数据。这张表的目的是让用户可以在足球比赛上下注——因此我显示了所有可用的比赛加上已经可用的赌注(但也显示了还没有可用赌注的比赛)。此“下注”功能构建为 INSERT ON DUPLICATE KEY UPDATE

当我现在尝试插入一个新赌注(在下面的代码中也称为“Tipp”)时,它不会创建一个新的数据库条目。另一方面,当我通过 ON DUPLICATE KEY UPDATE 更新条目(我通过 phpMyAdmin 直接添加)时,一切正常,表中的现有条目 tipps 获取更新。

知道为什么 INSERT 不起作用吗?当您需要了解有关代码的更多信息时,请告诉我。

主表

<form method="POST" action="savebets.php">
<table style="text-align: left; width: 100%">
<tr>
<th>date</th>
<th>time</th>
<th>home</th>
<th></th>
<th></th>
<th></th>
<th>away</th>
<th colspan="2">tipp</th>
</tr>
<?php
mysqli_select_db($conn,"allerlei");
$names = mysqli_query($conn,"set names utf8");
$results = mysqli_query($conn, "
//SQL query, see below
");
while($pers = mysqli_fetch_assoc($results)) {
?>
<tr>
<td><?php echo $pers["id"] ?><input type="hidden" name="id[]" value="<?php echo $pers["id"]?>"></td>
<td><?php echo $pers["date"] ?></td>
<td><?php echo $pers["time"]?></td>
<td><?php echo $pers["match_id"]?><input type="hidden" name="match_id[]" value="<?php echo $pers["match_id"]?>"></td>
<td><?php echo $pers["home_name"]?></td>
<td><?php echo $pers["goals_home"]?>
</td>
<td>:</td>
<td><?php echo $pers["goals_away"]?></td>
<td><?php echo $pers["away_name"]?></td>
<input type="hidden" name="user_id[]" value="<?php echo $pers["user_id"]?>">
<td><input type="tel" size="1" maxlength="2" name="tipp_home[]" value="<?php echo $pers["tipp_home"]?>"></td>
<td><input type="tel" size="1" maxlength="2" name="tipp_away[]" value="<?php echo $pers["tipp_away"]?>"></td>
<input type="hidden" name="tipp_id[]" value="<?php echo $pers["tipp_id"]?>">
</tr>
<?php
}
?>
</table>
<table>
<tr><td><input type="SUBMIT" name="submitbutton" value="Tipps speichern"></td></tr>
</table>
</form>

ActionScript (savebets.php)

<?php
session_start();
require("connect.php");
$tipp_id = $_POST["tipp_id"];
$match_id = $_POST["match_id"];
$user_id = $_POST["user_id"];
$goals_home = $_POST["tipp_home"];
$goals_away = $_POST["tipp_away"];
$failsCount = 0;
foreach($_POST['id'] as $key => $value) {
if(!$goals_home[$key] && !$goals_away[$key]) {
continue;
}
$result="
INSERT INTO tipps
(tipp_id, match_id, user_id, goals_home, goals_away)
VALUES
('$tipp_id', '$match_id[$key]', '$user_id[$key]', '$goals_home[$key]', '$goals_away[$key]')

ON DUPLICATE KEY UPDATE
match_id = '".$match_id[$key]."',
user_id = '".$user_id[$key]."',
goals_home = '".$goals_home[$key]."',
goals_away = '".$goals_away[$key]."'
";
$query=mysqli_query($conn,$result);
if(!$query) {
$failsCount++;
}
} else {
$notSavedCount++;
}
if($failsCount == 0 && $notSavedCount == 0) {
mysqli_close($conn);
$_SESSION['msg'] = "Succes! Deine Tipps wurden gespeichert.";
header("Location:mastertable.php#bottom");
} elseif($failsCount !=0) {
echo "Fail, an error occured, try again.";
} else {
mysqli_close($conn);
$_SESSION['msg'] = "Succes! Tipps gespeichert. <b>Hinweis</b>: Du hast noch offene Tipps! Bitte fülle alle Felder aus.";
header("Location:mastertable.php#bottom");
}
?>

SQL 查询

SELECT
matchschedule.id,
matchschedule.home,
matchschedule.away,
matchschedule.goals_home,
matchschedule.goals_away,
DATE_FORMAT(matchschedule.date, \"%d.%m.%Y\") AS date,
DATE_FORMAT(matchschedule.time, \"%H:%i\") AS time,
home.name AS home_name,
away.name AS away_name,
tipps.goals_home AS tipp_home,
tipps.goals_away AS tipp_away,
tipps.punkte_tipp,
tipps.tipp_id,
tipps.match_id,
login.user,
login.id AS user_id
FROM matchschedule LEFT JOIN teams home
ON matchschedule.home=home.id
LEFT JOIN teams away
ON matchschedule.away=away.id
LEFT JOIN tipps
ON matchschedule.id = tipps.match_id
LEFT Join login
ON tipps.user_id = login.id
WHERE user = '".$_SESSION['username']."' OR tipp_id is NULL

最佳答案

据我从代码中可以理解,tipp_id 是决定查询是否执行插入或更新的关键。如果 tipp_id 存在于数据库中,查询将进行更新,因为它是一个重复键。

现在,从 PHP 的角度来看 - $_POST['tipp_id'] 只有从 View 发送的 tipp_id,即存在于数据库。因此,当您执行 foreach 时,您只需遍历所有现有的 tipp_id -s 并在 tipp_id 已存在于数据库中时调用 sql。这意味着如果不这样做,它将永远不会到达 sql 查询,因此它永远不会执行插入。你的 sql 很好,问题是它永远不会到达,除非它应该进行更新。

不是通过一个并不总是存在的项目进行循环,您应该使用一个您知道将始终存在的项目(不是左连接的一部分)。 match_id 例如。这会将您的 foreach 循环更改为

foreach($_POST['id'] as $key => $value) {
if(!$goals_home[$key] && !$goals_away[$key]) {
continue;
}
//here goes the update logic, only if the fields are inserted
}

我相信应该这样做。

关于php - 插入重复键更新 - 插入不会将任何内容发布到数据库中,更新会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38022606/

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