gpt4 book ai didi

php 如何从下拉列表中获取选定的值?

转载 作者:行者123 更新时间:2023-12-04 06:27:01 25 4
gpt4 key购买 nike

<select name="gamelist" id="gamelist">
<option value="1">Backgammon</option>
<option value="2">Chess</option>
</select>
<input type="submit" name="submit" id="submit" value="Submit" />

我想获取选定的值并放入 var
任何的想法?
谢谢

最佳答案

取决于您的表单标签。

<form method="post">

将值传递给 $_POST['gamelist']

尽管
<form method="get">

将值传递给 $_GET['gamelist']

当然,只有在点击提交按钮之后。正如 morgar 所说,这是非常基本的形式游行。我怀疑您是否使用过谷歌或遵循教程,这几乎是使用表单和 PHP 时学习的第一件事。我们不是在这里为您提供完整的解决方案,以此为例并自己创建完整页面:
if($_SERVER['REQUEST_METHOD'] == "Y") {
$choice = $_Y['gamelist'];
// other stuff you want to do with the gamelist value
} else {
echo '<form method="Y" action="file.php">';
// the rest of your form
echo '</form>';
}

用 GET 或 POST 替换 Y。

关于php 如何从下拉列表中获取选定的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5918107/

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