gpt4 book ai didi

php - 如何将多个复选框值插入数据库?

转载 作者:行者123 更新时间:2023-11-29 11:05:21 24 4
gpt4 key购买 nike

我在 html 表单标记中有以下代码:

<label for="client">Services Included:</label>
<p><input type="checkbox" name="service[]" value="Spa"> Spa </p>
<p><input type="checkbox" name="service[]" value="Massage"> Massage </p>
<p></p>
<input type="submit" value="Submit" />

在 php 代码中我有这个:

      if(!empty($_POST['service']))
{
foreach ($_POST['service'] as $selected)
{
$query7 ="INSERT INTO reservation_includes_service VALUES (3,'".$selected."');";
$queryexe7 = mysql_query($queryexe7);

}
}

虽然我已经尝试了一切,但查询不起作用...有什么想法吗?谢谢您的帮助:)

最佳答案

正如我在评论和作为社区 wiki 发布的内容中所述:

"mysql_query($queryexe7) wrong variable. You're just creating some type of loop and is confused as to which variable to use. It's kind of like "monkey in the middle", if I could say.".

这是您需要使用的:

$queryexe7 = mysql_query($query7);

您应该考虑使用mysqli_或PDO API。 mysql_ 已弃用并从 PHP 7 中删除。

关于php - 如何将多个复选框值插入数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41492848/

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