我到处找,但我找不到这个问题的答案。我已经看到了几种对人们有所帮助的解决方案,但是当我尝试它时,我发现我做的一切都是正确的,并且没有什么需要解决的。我正在创建一个论坛,我正在尝试将这些插入到一个 mysql 表中,但每次我尝试它时都会说:
“字段列表”中的未知列“6c09e4fe82d47011bf9b25b05946307f”。
长代码是其中一个用户的用户 ID,它应该被插入,但由于某种原因,它正在寻找具有该名称的列。我只是在第一个查询中出现错误,所以第二部分可能完全没问题,我不知道。
$sql = "INSERT INTO
topics(topic_subject,
topic_date,
topic_cat,
topic_by)
VALUES('" . mysql_real_escape_string($_POST['topic_subject']) . "',
NOW(),
" . mysql_real_escape_string($_POST['topic_cat']) . ",
". $_SESSION['userid'] ."
)";
$result = mysql_query($sql);
if(!$result)
{
//something went wrong, display the error
echo 'You did everything right, yet there is an error. WEIRD RIGHT???<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)
VALUES
('" . mysql_real_escape_string($_POST['post_content']) . "',
NOW(),
" . $topicid . ",
". $_SESSION['userid'] ."
)";
$result = mysql_query($sql);