gpt4 book ai didi

php - 访问复选框表中的相应数据

转载 作者:行者123 更新时间:2023-11-29 00:46:51 27 4
gpt4 key购买 nike

我想创建一个简单的表单来显示数据库中的数据项,并且我创建了一个相应的复选框列,但是问题是我想访问与选中的复选框对应的数据项,我希望有人能帮忙,那是我的代码:

<form action="" method="post">
<p>
<?php
$con = mysql_connect('localhost', 'root', "");
if (!$con) {
die ('connection error');
}
else {
mysql_select_db("db_name", $con);
$result = mysql_query ('SELECT `name` FROM `fruit`');

echo '<table width="100%">
<tr>
<td><b>Name</b></td>
<td><b>choose</b></td>
</tr>';
while($row = mysql_fetch_assoc($result)) {
echo "
<tr>
<td>{$row['name']}</td>
<td><input type='checkbox' name='fruit' /><br /></td></tr>";
}
}
if(isset($_POST['fruit'])) {
echo $row['name'];
}
?>
</p>
<p><input type="submit" value="save & send invitations" /></p>
</form>

最佳答案

如果我没理解错的话,你只需要替换这个:

if(isset($_POST['fruit'])) {
echo $row['name'];
}

用类似的东西:

if(isset($_POST['fruit'])) {
$result = mysql_query ('SELECT `name` FROM `fruit` WHERE `name`='.$_POST['fruit']);
while($row = mysql_fetch_assoc($result)) {
echo $row['name'];
}
}

关于php - 访问复选框表中的相应数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10218909/

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