I was making a poll and found that I could not post a value of 0.
Does that make sense?
Just curious.
<form name="survey" method="POST" action="<? echo $_SERVER['PHP_SELF'] ?>">
<label><input type="radio" name="sel" value="0">Value 0</label><br>
<label><input type="radio" name="sel" value="1">Value 1</label><br>
<input type="submit" name="Survey" value="Vote">
</form>
<?
if(!empty($POST['sel'])){
echo $POST['sel'];}
?>