GenVic
09-16-2009, 09:53 PM
I have radio buttons that are not being sent when selected, they either not being passed, or not echoing. Any ideas?
This get's passed and echos just fine:
<input name="abc" type="radio" value="50" />50
<input name="abc" type="radio" value="60 " />60
<?php echo $_POST['abc'];?>
But this one doesn't get passed:
<input name="do" type="radio" value="Enclosed"/>Enclosed
<input name="do" type="radio" value="Open" />Open
<input name="do" type="radio" value="Both" /> Both
<?php echo $_POST['do'];?>
This get's passed and echos just fine:
<input name="abc" type="radio" value="50" />50
<input name="abc" type="radio" value="60 " />60
<?php echo $_POST['abc'];?>
But this one doesn't get passed:
<input name="do" type="radio" value="Enclosed"/>Enclosed
<input name="do" type="radio" value="Open" />Open
<input name="do" type="radio" value="Both" /> Both
<?php echo $_POST['do'];?>