Send radio box value with $_POST(使用 $_POST 发送单选框值)
问题描述
即使字段为空,如何将单选或复选框值发送到 $_POST 数组?
How can I send a radio or checkbox value to the $_POST array even when the field is empty?
<?php
if(isset($_POST)) {
echo '<pre>';
print_r($_POST);
echo '</pre>';
}
?>
<form action="test.php" method="POST">
<input type="text" name="name">
<input type="text" name="email">
<input type="radio" name="gender">
<input type="submit">
</form>
如果我在没有填写数据的情况下点击提交,这就是我从页面中得到的结果.
Here is what I get from the page if I hit submit without even filling out data.
Array
(
[name] =>
[email] =>
)
如您所见,在不触及输入类型文本的情况下,它们的值被推送到 $_POST 数组.如何使用单选框做到这一点?我基本上想设置"它,虽然它和文本输入一样是空白的.
As you see, without touching the input type text, their value was pushed to the $_POST array. How can I do this with the radio box? I essentially want to "set" it, although it is blank just like the text inputs.
我知道我总是可以打电话
I know I could always call
<?php
if(isset($_POST['gender'])) {
//Code
}
?>
但这不一定是我想要的.我需要它自动设置.提前致谢!
But that's not necessarily what I'm looking for. I need it to set automatically. Thanks in advance!
推荐答案
试试这个就行了:
Unchecked radio
元素不会被提交,因为它们不被视为成功
.所以你必须检查它们是否使用 isset
或 empty
函数发送.
Unchecked radio
elements are not submitted as they are not considered as successful
. So you have to check if they are sent using the isset
or empty
function.
<?php
if(isset($_POST)) {
echo '<pre>';
print_r($_POST);
echo '</pre>';
}
?>
<form action="test.php" method="POST">
<input type="text" name="name">
<input type="text" name="email">
<input type="radio" name="Gender" value="1"/>Male
<input type="submit" name="submit" value="submit"/>
</form>
这篇关于使用 $_POST 发送单选框值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 $_POST 发送单选框值
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01