php - '(value)' 中的未知列 'field list'

标签 php mysql syntax-error

好吧,也许我是个傻瓜,但我无法找出这里出了什么问题。 :)

我收到此错误

Unknown column '(the value user has selected from the dropdown)' in 'field list'

是的,我知道这个问题之前已被问过很多次,并且我尝试用旧答案解决我的问题,但我无法弄清楚。 我正在尝试为论坛制作一个发帖表单,但我的错误是由于“选择主题类型”下拉菜单造成的。

 <?php
//create_topic.php
include 'connect.php';
include 'header.php';

echo '<h2>Create a topic</h2>';
if($_SESSION['signed_in'] == false)
{
    //the user is not signed in
    echo 'Sorry, you have to be <a href="/forum/signin.php">signed in</a> to create a topic.';
}
else
{
    //the user is signed in
    if($_SERVER['REQUEST_METHOD'] != 'POST')
    {   
        //the form hasn't been posted yet, display it
        //retrieve the categories from the database for use in the dropdown
        $sql = "SELECT
                    cat_id,
                    cat_name,
                    cat_description
                FROM
                    categories";

        $result = mysql_query($sql);

        if(!$result)
        {
            //the query failed, uh-oh :-(
            echo 'Error while selecting from database. Please try again later.';
        }
        else
        {
            if(mysql_num_rows($result) == 0)
            {
                //there are no categories, so a topic can't be posted
                if($_SESSION['user_level'] == 1)
                {
                    echo 'You have not created categories yet.';
                }
                else
                {
                    echo 'Before you can post a topic, you must wait for an admin to create some categories.';
                }
            }
            else
            {

                echo '<form method="post" action="">
                    Subject: <input type="text" name="topic_subject" /><br />
                    Category:'; 

                echo '<select name="topic_cat">';
                    while($row = mysql_fetch_assoc($result))
                    {
                        echo '<option value="' . $row['cat_id'] . '">' . $row['cat_name'] . '</option>';
                    }
                echo '</select><br />
                <select name="topic_type">
                <option value="Q&A">Q&A</option>
                <option value="Development">Development</option>
                <option value="Rooting and tweeking">Rooting and tweeking</option>
                <option value="Other">Other</option>
                </select><br />';   

                echo 'Message: <br /><textarea name="post_content" /></textarea><br /><br />
                    <input type="submit" value="Create topic" />
                 </form>';
            }
        }
    }
    else
    {
        //start the transaction
        $query  = "BEGIN WORK;";
        $result = mysql_query($query);

        if(!$result)
        {
            //Damn! the query failed, quit
            echo 'An error occured while creating your topic. Please try again later.';
        }
        else
        {

            //the form has been posted, so save it
            //insert the topic into the topics table first, then we'll save the post into the posts table
            $sql = "INSERT INTO 
                        topics(topic_subject,
                               topic_date,
                               topic_cat,
                               topic_by,
                               topic_type)
                   VALUES('" . mysql_real_escape_string($_POST['topic_subject']) . "',
                               NOW(),
                               " . mysql_real_escape_string($_POST['topic_cat']) . ",
                               " . $_SESSION['user_id'] . ",
                               " . mysql_real_escape_string($_POST['topic_type']) . "
                               )";

            $result = mysql_query($sql);
            if(!$result)
            {
                //something went wrong, display the error
                echo 'An error occured while inserting your data. Please try again later.<br /><br />' . mysql_error();
                $sql = "ROLLBACK;";
                $result = mysql_query($sql);
            }
            else
            {
                //the first query worked, now start the second, posts query
                //retrieve the id of the freshly created topic for usage in the posts query
                $topicid = mysql_insert_id();

                $sql = "INSERT INTO
                            posts(post_content,
                                  post_date,
                                  post_topic,
                                  post_by,
                                  post_type)
                        VALUES
                            ('" . mysql_real_escape_string($_POST['post_content']) . "',
                                  NOW(),
                                  " . $topicid . ",
                                  " . $_SESSION['user_id'] . "
                                  " . mysql_real_escape_string($_POST['post_type']) . ",
                            )";
                $result = mysql_query($sql);

                if(!$result)
                {
                    //something went wrong, display the error
                    echo 'An error occured while inserting your post. Please try again later.<br /><br />' . mysql_error();
                    $sql = "ROLLBACK;";
                    $result = mysql_query($sql);
                }
                else
                {
                    $sql = "COMMIT;";
                    $result = mysql_query($sql);

                    //after a lot of work, the query succeeded!
                    echo 'You have succesfully created <a href="topic.php?id='. $topicid . '">your new topic</a>.';
                }
            }
        }
    }
}

include 'footer.php';
?>

表结构

帖子

Kolonne 类型 Null 标准评论器 post_id int(8) 内
post_content 文本 Nei
post_date 日期时间 Nei
post_topic int(8) Nei
post_by int(8) 内
post_type varchar(255) 内

主题

Kolonne 类型空标准链接器至评论者 topic_id int(8) 内
topic_subject varchar(255) 内
topic_date日期时间内
topic_cat int(8) 内分类 -> cat_id
topic_by int(8) Nei
topic_type varchar(100) 内

(挪威语,但我想你会明白的) 谢谢:)

最佳答案

顺便说一下...

topic_type 似乎是一个字符串,因此您应该在插入查询中添加引号:

 $sql = "INSERT INTO 
           topics(topic_subject,
                   topic_date,
                   topic_cat,
                   topic_by,
                   topic_type)
          VALUES('" . mysql_real_escape_string($_POST['topic_subject']) . "',
                  NOW(),
                  " . mysql_real_escape_string($_POST['topic_cat']) . ",
                  " . $_SESSION['user_id'] . ",
                  '" . mysql_real_escape_string($_POST['topic_type']) . "'
          )";

也许这就是您错误的原因。

我看到 post_type 也是一个字符串。因此,在第二个插入查询中执行相同的操作!

关于php - '(value)' 中的未知列 'field list',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17401862/

相关文章:

如果 mysql 字段完整则重定向的 PHP 代码

mysql - 如何使用内部查询优化mysql查询

python - 语法错误: can't assign to function call with append

c# - 如何处理 Access INSERT 语句和 .NET DataGridView 控件中的语法错误?

python - gdalinfo不起作用

PHP - 从数组中获取值

php - 动态表单——设置数据库的正确方法?

mysql - 泛化表查询

mysql - 使用纯 MySQL 获取树的根路径

php 随机名称