我正在努力将单选按钮的值发送到电子邮件。
我编写了 2 个单选按钮,我将第一个设置为默认检查。
表单和值有效,但未提交单选按钮值。
有什么妙语吗?
当您选择单选按钮并单击提交按钮时,您需要使用$_POST[]
例如:如果您的单选按钮是:
<input type="radio" name="rdb" value="male"/>
然后在你的 php 代码中你需要使用:
$rdb_value = $_POST['rdb'];
检查您是否将 name="your_radio" 放置在您插入无线电标签的位置
如果你已经这样做了,那么检查你的 php 代码。使用 isset()
例如
if(isset($_POST['submit']))
{
/*other variables*/
$radio_value = $_POST["your_radio"];
}
如果您也这样做了,那么我们需要查看您的代码
当您选择单选按钮并单击提交按钮时,您需要使用 $_POST[] 处理 php 代码中任何选定值的提交
例如:
如果您的单选按钮是:
<input type="radio" name="rdb" value="male"/>
然后在你的 php 代码中你需要使用:
$rdb_value = $_POST['rdb'];
单选按钮仅在选中时在表单提交时发送...
如果为真则使用isset()
它,否则它不是
应该 :
HTML:
<form method="post" action="">
<input id="name" name="name" type="text" size="40"/>
<input type="radio" name="radio" value="test"/>Test
<input type="submit" name="submit" value="submit"/>
</form>
PHP代码:
if(isset($_POST['submit']))
{
echo $radio_value = $_POST["radio"];
}
单选按钮有另一个属性 - 选中或未选中。您需要设置用户选择了哪个按钮,因此您必须使用这些值在 HTML 中编写 PHP 代码 - 选中或未选中。这是一种方法:
PHP代码:
<?PHP
$male_status = 'unchecked';
$female_status = 'unchecked';
if (isset($_POST['Submit1'])) {
$selected_radio = $_POST['gender'];
if ($selected_radio == 'male') {
$male_status = 'checked';
}else if ($selected_radio == 'female') {
$female_status = 'checked';
}
}
?>
HTML 表单代码:
<FORM name ="form1" method ="post" action ="radioButton.php">
<Input type = 'Radio' Name ='gender' value= 'male'
<?PHP print $male_status; ?>
>Male
<Input type = 'Radio' Name ='gender' value= 'female'
<?PHP print $female_status; ?>
>Female
<P>
<Input type = "Submit" Name = "Submit1" VALUE = "Select a Radio Button">
</FORM>