gpt4 book ai didi

php - PHP/MySQL 中多个动态生成的复选框

转载 作者:行者123 更新时间:2023-11-29 15:09:55 26 4
gpt4 key购买 nike

我有一系列来自一个 MySQL 表的复选框:

<?php
$result = mysql_query("SELECT * FROM strategies");
if (!$result) {
die("Database query failed: " . mysql_error());
}
while($row = mysql_fetch_array($result)) {
$strategylist = $row['name'];
$strategyname = htmlspecialchars($row['name']);
echo '<input type="checkbox" name="strategy[]" value="' . $strategylist . '" />' . $strategyname;
}
?>

我希望能够将多个“策略”存储到“研究”表的每一行,因此我使用另一个表 (sslink) 来存储研究的 ID 和策略的名称。部分原因是“策略”的数量将会不断增加,因此需要将它们存储在数据库中。这是我当前使用的代码:

<?php   



if(isset($_POST['update1']))
{
$strategy=serialize($_POST['strategy']); //line 66, where the warning is happening

if(!get_magic_quotes_gpc())
{
$strategy = addslashes($strategy);
}

// update the article in the database
$query ="INSERT INTO sslink('study_id', 'strategyname') VALUES ('".$_GET['id']. "', '" .$strategy. "')";

mysql_query($query) or die('Error : ' . mysql_error());

$cacheDir = dirname(__FILE__) . '/cache/';

$cacheFile = $cacheDir . '_' . $_GET['id'] . '.html';

@unlink($cacheFile);

@unlink($cacheDir . 'index.html');

echo "<b>Article '$title' updated</b>";

$strategy = stripslashes($strategy);
}


?>

这是返回的错误:

注意:未定义索引:/casestudyform.php 第 66 行中的策略错误:您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 1 行 ''study_id', 'strategyname') VALUES ('1', 'N;')' 附近使用的正确语法

有人知道如何解决这个问题吗?或者更好的方法?

提前致谢!

最佳答案

试试这个:


$query ="INSERT INTO sslink (study_id, strategyname) VALUES ('".$_GET['id']. "', '" .$strategy. "')";

关于php - PHP/MySQL 中多个动态生成的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1045160/

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