我已经构建了一个“主表”,可以从4个表中获取数据。这个表的目的是用户可以在足球比赛上下注 - 因此我显示所有可用的比赛以及已经可用的投注(但是还有没有投注的比赛)。这个“下注”功能构建为INSERT ON DUPLICATE KEY UPDATE
。
当我现在尝试插入新的赌注(在下面的代码中也称为“Tipp”)时,它不会创建新的数据库条目。另一方面,当我通过phpMyAdmin
更新条目(我已通过ON DUPLICATE KEY UPDATE
直接添加)时,一切正常,表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>
动作脚本(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
答案 0 :(得分:1)
根据我从代码中可以理解的内容,tipp_id
是决定查询是执行插入还是更新的关键。如果数据库中存在tipp_id
,则查询将进行更新,因为它是重复键。
现在,从PHP的角度来看 - $_POST['tipp_id']
只有tipp_id
- s从视图发送,即数据库中存在的那些。因此,当您执行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
}
我相信应该这样做。