繁体   English   中英

为什么isset函数不会更新我的数据库?

[英]Why isset function doesn't update my database?

我不明白为什么isset函数在这里不起作用:

include 'db.php';
if(isset($_POST['Submit'])) {

$name = $_POST['title'];
    $text = $_POST['text'];
    $category = $_POST['category'];

    $insert = mysqli_query($con,
    "INSERT INTO `items`(
    `title`, 
    `text`, 
    `category`
    ) 
    VALUES (
    '$name', 
    '$text', 
    '$category')"
    );
    if (!$insert) {
        echo mysqli_error($con);
    } else {
        echo "Inserted!";
    }
}




<form method="post">
<input type="text" name="title" placeholder="Enter the title..">
<input type="text" name="text" placeholder="Enter the text..">
<input type="text" name="category" placeholder="Enter the category..">
<input type="submit" value="Submit">
</form>

数据库未更新。 没有这个,我的代码就可以了,但这不是我想要的。

您的输入提交没有名称属性

<input type="submit" value="Submit" name="Submit">

您需要使用名称属性,名称属性的文本应与isset($ _ POST ['submit'])相匹配

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM