gpt4 book ai didi

php - 无法获取表单数据以发布到 SQL(使用 MySQL 5.5.25)

转载 作者:行者123 更新时间:2023-11-29 13:31:25 25 4
gpt4 key购买 nike

我正在开发一个项目,但在将表单数据发布到 SQL 数据库时遇到了一些问题。起初,每当我提交表单时,自动 inc ID 值都会起作用,但不会发布其他数据...现在什么也没有发生...我对 php 非常生疏...无论如何,这就是我的到目前为止。

插入.php

<?php
include ("connect.php");
$sql = "INSERT INTO 'tc_db'.'teamchiefs' ('lastname', 'firstname','unit','datecert','initial')
VALUES ('$_POST[lastname]','$_POST[firstname]','$_POST[unit]','$_POST[datecert]')";
if (!mysqli_query($con,$sql))
{
die('Error:' . mysqli_error(@con));
}
echo "Record Added";
mysqli_close($con);
?>

我的 form.html 文件...被剪下来以节省空间。

<body>
<ul>

<form action="insert.php" method="post">
"sprytextfield1">
<label>Last Name:
<input type="text" name="lastname" id="lastname" />
</label>
<label>First Name:
<input type="text" name="firstname" id="firstname" />
</label>
<label>Middle Initial
<input name="initial" type="text" id="initial" size="5" maxlength="1" />
</label>

...etc

//spry widget javascript stuff here

</form>
</ul>
</div>
</body>

我的sql表是

ID - BIGINT(20) - A_I
lastname - VARCHAR(60)
firstname - VARCHAR(60)
unit - VARCHAR(6)
datecert - YEAR(4)
initial - VARCHAR(1)

感谢任何帮助。

最佳答案

INSERT INTO 'tc_db'.'teamchiefs'

对表名和列名使用反引号

INSERT INTO `tc_db`.`teamchiefs` 

关于php - 无法获取表单数据以发布到 SQL(使用 MySQL 5.5.25),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19412577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com