提问人:Purvi Deb 提问时间:11/11/2023 最后编辑:Marcel PredaPurvi Deb 更新时间:11/12/2023 访问量:26
我从数据库中检索 ID,除了这个其余的,所有元素都已成功检索,我已经尝试了所有方法,但没有任何工作 [关闭]
i retrieving id from the database except this rest all elements are retrieving successfully,i have tried everything but nothing is working [closed]
问:
我使用GET方法从数据库中检索ID,但它无法检索它。 ID 显示在 url 中,但实际上在页面上检索它。
我已经这样做了:
$con = mysqli_connect("localhost", "root", "", "purvi") or die('error');
if (isset($_REQUEST['edit'])) {
$empID = $_GET['empID'];
$InputName = $_POST['InputName'];
$InputEmail = $_POST['InputEmail'];
$InputSalary = $_POST['InputSalary'];
$default = $_POST['default'];
$query = mysqli_query($con, "UPDATE `emp_detls` SET `empID`='$empID',`empName`=' $InputName',`empEmail`='$InputEmail',`empSalary`='$InputSalary',`empDeparment`='$default', WHERE `empID`='$empID'");
if ($query) {
echo "<script>alert('data updated');
window.location.href='show.php';</script>";
}
else {
echo "<script>alert('data failed to update')</script>";
}
}
答: 暂无答案
评论
WHERE