使用php其余代码更新mysql数据库但无更新

时间:2014-01-05 08:43:27

标签: php phpmyadmin

我知道问题不在于表格,一切都正确地回应。 我一直在玩这个一个小时。 我遍布网络。 唯一的问题是数据库没有更新。

if (isset($_POST["adnotes"]))
{
$adnotesnew = $_POST["adnotes"];
mysqli_query($con,"UPDATE client SET adnotes = $adnotesnew
WHERE id='1'");
echo $adnotesnew;
}

1 个答案:

答案 0 :(得分:1)

试试这样..

if (isset($_POST["adnotes"]))
{
    $adnotesnew = $_POST["adnotes"];
    mysqli_query($con,"UPDATE `client` SET `adnotes` = '$adnotesnew' WHERE `id`=1");
    echo $adnotesnew;
}