gpt4 book ai didi

php - 如何获取在其他页面上选择的值?

转载 作者:行者123 更新时间:2023-11-28 23:46:02 26 4
gpt4 key购买 nike

我有下拉菜单来编辑表单。所有 ISBN 记录都列在下拉列表中。用户将选择他想要更新的 ISBN。现在如何获取该用户选择的 ISBN 记录?我的下拉逻辑如下:

function update()
{
$select_query="Select ISBN from book";
$select_query_run = mysql_query($select_query);
echo"<form method='post' action='update.php'><center>Select ISBN you want to Update: ";
echo "<select name='isbn' id='isbn'>";
while ($select_query_array=mysql_fetch_array($select_query_run) )
{
echo "<option value='' >".htmlspecialchars($select_query_array["ISBN"])." </option>";
}
echo "</select>";
echo '<br><br><br><input type="submit" value="Update"></center></form>';
} After selecting ISBN the user will be navigated to update php page whoch is as follow:

<?php
$isbn=$_POST['isbn'];
echo "ISBN Selected: ".$isbn;
?>

更新页面的输出:选定的 ISBN:

最佳答案

因为你的选择框中的值是空的

 echo "<option value='' >".htmlspecialchars($select_query_array["ISBN"])." </option>";
^^

您需要在选择框中添加值

echo "<option value='".htmlspecialchars($select_query_array['ISBN'])."' >".htmlspecialchars($select_query_array["ISBN"])." </option>";

关于php - 如何获取在其他页面上选择的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33540470/

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