我在这里有一个绝对的初学者问题。我无法将多个复选框条目放入数据库中的单个列中。我用我的 php 尝试了一些不同的东西,但似乎无法让任何东西正常工作。我尝试过使用序列化以及使用内爆/爆炸。抱歉,我基本上是在要求用勺子喂食,因为我知道这是一个简单的解决方法,我只是还没有任何工作可以做。任何援助将不胜感激。谢谢!!!此外,我拥有的三个复选框是系统、通信和其他,我的 3 个输入确实有括号,即使 php 尚未设置为处理它们,所以现在我的数据库仍然显示这些输入的数组。这是我的php
<?php
$con = mysql_connect("localhost","Andrew","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("mydb", $con);
$sql="INSERT INTO persons (firstname, lastname, modelid, system, department, comm, other, shift, comments)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[modelid]','$_POST[system]','$_POST[departme nt]','$_POST[comm]','$_POST[other]','$_POST[shift]','$_POST[comments]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "1 record added";
mysql_close($con);
?>