选择单选按钮时设置$ _POST值

时间:2013-11-13 12:55:15

标签: php html

我有一个带有一些单选按钮和表单的页面。当我选择一个单选按钮时,我需要将其ID设置为$ _POST ['id'] varible,因此当我提交表单时,我可以检查选择了哪个单选按钮并采取相应措施。我知道我不能直接这样做,所以尝试使用

onclick="document.getElementById("id").value="'.$row['id'].'"

单选按钮但它不起作用。     

$d="select * from {$_c['dbprefix']}card where active='1' order by s_sent desc, s_order asc limit 0,{$_c['filtr']['step']}";
$r=mysql_query($d);
if (mysql_num_rows($r)>0) {

echo '<div class="cards">';
echo '<form method="POST">';
$i=0;
while ($row=mysql_fetch_array($r)):

echo '<div class="item">';
echo '<input id="'.$row['id'].'" type="radio" name="id" class="detail">'.$_l['detailtitle'].'</input>';
echo '<label for="'.$row['id'].'" class="itemin" style="height:'.$_c['card']['sy'].'px"><img src="pub/cards/'.$row['id'].'s.jpg" /></lable>';
echo '</div>';

$i++;
if ($i%3==0) echo '<div class="cl-left"></div>';

endwhile;

echo '<div class="cl-left"></div>';
echo '</div>';
    }
?>



<div class="dvasl">

<div class="sl1">

<fieldset>
<legend>Saatja andmed</legend>
<table class="info">
<colgroup><col width="12%"><col></colgroup>
<tr>
<th>Nimi:</th>
<td><input type="text" name="item[from_name]" value="<?php echo $ap['set']['from_name']; ?>" class="inpedit"></td>
</tr>
<tr>
<th>Email:</th>
<td><input type="text" name="item[from_email]" value="<?php echo $ap['set']['from_email']; ?>" class="inpedit"></td>
</tr>
</table>
</fieldset>

<fieldset>
<legend>Saaja andmed</legend>
<table class="info">
<colgroup><col width="12%"><col></colgroup>
<tr>
<th>Nimi:</th>
<td><input type="text" name="item[to_name]" value="<?php echo $ap['set']['to_name']; ?>" class="inpedit"></td>
</tr>
<tr>
<th>Email:</th>
<td><input type="text" name="item[to_email]" value="<?php echo $ap['set']['to_email']; ?>" class="inpedit"></td>
</tr>
</table>
</fieldset>

</div>
<div class="sl2">

<fieldset>
<legend>E-kaardi tekst</legend>
<table class="info">
<tr>
<td><textarea name="item[text]" cols="20" rows="8" class="inpedit2"></textarea></td>
</tr>
</table>
</fieldset>

</div>

<div class="cl-left"></div>
</div>

<div class="buttons">
<div class="t2"><input type="submit" value="Vaata kaardi eelvaadet" name="button[nahled]" class="unbutt1"></div>
</div>

<input type="hidden" name="id" value="<?php echo $ap['card']['id']; ?>">
<input type="hidden" name="action" value="itemadd">
</form>

<?php
$k=floor(($i-1)/3);
if ($k<2) echo '<div class="spacer-'.(2-$k).'"></div>';

?>

4 个答案:

答案 0 :(得分:1)

如果您可以在表单中使用隐藏字段并使用所选单选按钮的ID更新其值,那么效果会更好。当表单发布后,您可以在更改了值后再获取其值您可以使用带有id attibute的javascript访问它的隐藏字段,并且可以通过名称属性获取它

添加名为

的隐藏字段
<input type="hidden" id="checked_radio" name="checked_radio" value="" />

然后点击按钮

使用javascript更改值
<input type="radio" id="foo" name="foo" onclick="document.getElementById('checked_radio').value=this.value;" />

答案 1 :(得分:1)

发布所选单选按钮的值,name用于将单选按钮组合在一起。 (只能选择一个具有指定name的单选按钮。)您应该添加id属性并设置该属性,而不是尝试发布value属性的值。您可以将其设置为与id属性相同的值,也可以完全删除id属性。

答案 2 :(得分:0)

  

当我选择一个单选按钮时,我需要将其ID设置为$_POST['id']变量

您正在更改值,而不是ID,以更改ID使用:

onclick="document.getElementById("id").id="<?php echo $row['id'] ?>";

无论如何,我认为你应该使用name属性。

答案 3 :(得分:0)

更改此行

echo '<input id="'.$row['id'].'" type="radio" name="id" class="detail">'.$_l['detailtitle'].'</input>';

echo '<input id="'.$row['id'].'" type="radio" value="'.$row['id'].'" name="id" class="detail">'.$_l['detailtitle'].'</input>';

当您的表单提交时,您将获得所选的ID $_POST['id']