x-editable不保存,这是什么

时间:2019-02-17 13:56:24

标签: php mysql x-editable

x-editable不保存数据。我没有尝试安装处理程序时,似乎他没有看到该处理程序。请帮助我。

代码处理程序:

People

对不起,我的英语不好,我是乌克兰学生:c

<?php
$link = mysqli_connect(
        'localhost',
        'root',
        '',
        'oa_otdel');

if (!$link) {
    printf("no connect: %s\n", mysqli_connect_error());
    exit;
}
    if (isset($_POST['name'])) {
    $column = $_POST['name'];
    $newValue = $_POST['value'];    
    $id = $_POST['pk'];
    $sql = "UPDATE `$rows[0]` SET $column = '$newValue' WHERE clerk_id = $id";
    mysqli_query($link, $sql);
}

0 个答案:

没有答案