gpt4 book ai didi

php - MySQL 更新不起作用?

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

我正在创建一个网站,所有者必须能够更新他们的事件,但我的更新代码不起作用,即使我 99% 确定我没有犯任何错误。

首先是您按下更新的表单:

<?php
$sql = "SELECT * FROM events ORDER BY id ASC";

$res = $objCon->query($sql) or die('fejl i query:'.mysqli_error($objCon));

while($row=$res->fetch_array()) {
$id = $row['id'];
echo "<div class='eventpost'>";
echo "<div class='dato'>";
echo $row['id'];
echo "</div>";
echo "<p class='overskrift'>";
echo "<a href='update.php?id=$id'>RET </a>";
echo "<a href='code_delete.php?id=$id'>SLET</a>";
echo $row['overskrift'];
echo "</p>";
echo "</div>";
}
?>

然后是更新表单:

<form action="code_update.php" method="POST">
<label>Dato:<br>
<input type="text" name="dag" value="<?php echo $data['dag']; ?>"></label>
<label>Månede:<br>
<input type="text" name="month" value="<?php echo $data['month']; ?>"></label>
<label>Overskrift:<br>
<input type="text" name="overskrift" value="<?php echo $data['overskrift']; ?>"></label>
<label>Tekst:<br>
<input type="text" name="tekst" value="<?php echo $data['tekst']; ?>"></label>
<input type="hidden" name="id" value="<? echo $id; ?>">
<input type="submit" value="Opret">
</form>

最后是更新代码

<?php
session_start();
if($_SESSION['auth'] == 2){
include('incl_db.php');
$id = $_POST['id'];
$overskrift = $_POST['overskrift'];
$dag = $_POST['dag'];
$month = $_POST['month'];
$tekst = $_POST['tekst'];
$sql = "UPDATE events SET overskrift='$overskrift', dag='$dag', month='$month', tekst='$tekst' WHERE id='$id'";
$res = $objCon->query($sql);

header('location:events.php');
}else{
header('location:index.php');
}
?>

最佳答案

您的 php 版本中可能禁用了简写标签。因此请尝试更改此设置

<input type="hidden" name="id" value="<? echo $id; ?>">

到此

<input type="hidden" name="id" value="<?php echo $id; ?>">

您可以check this answer了解更多。

关于php - MySQL 更新不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24281787/

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