gpt4 book ai didi

javascript - 在 POST 模式下使用 Ajax 更新 PHP 中的 MySQL 表

转载 作者:行者123 更新时间:2023-11-28 07:12:14 24 4
gpt4 key购买 nike


我想做更新:

这是我的 php 页面中的 js 脚本:

            alert ("Ench : " + idE + " Price : "+ pf2 +" idU : " + idU); 
$.ajax({
url: './update.php', //same place in the server
type : 'POST',
data : 'id_enchere=' + idE + '&idU=' + idU + '&prix=' + pf2,
dataType: 'html',
success: function() {
return false;
}
});

警报(..)确认我的值已被填充。

这是我的 PHP 页面,名为:update.php

$query=$db->prepare('UPDATE enchere SET id_membre_act = :idU, prix_actuel = :prix WHERE id = :id_enchere');
$query->bindValue(':id_enchere', $_POST['id_enchere'], PDO::PARAM_STR);
$query->bindValue(':idU', $_POST['idU'], PDO::PARAM_STR);
$query->bindValue(':prix', $_POST['prix'], PDO::PARAM_STR);
$query->execute();

我已经在我的数据库中进行了选择和插入,因此连接良好。

我是 php 和 js/ajax 编程新手。
我不明白为什么它不起作用。
我尝试将其放入被调用的页面中:

$file = fopen('./files/test.txt', 'w+'); 

并且没有创建任何文件。所以我认为我的页面没有被调用。

感谢您的帮助。

纪尧姆。

最佳答案

我解决了问题,但我不知道如何解决:/我有相同的代码,现在它可以工作了。感谢您的帮助。

吉奥尔吉

关于javascript - 在 POST 模式下使用 Ajax 更新 PHP 中的 MySQL 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31187864/

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