[snip]
i have this code:
<?if($old['Type']=="Annual"){?>
<input type="radio" name="eventtype" value="Annual"checked
accesskey="y">Yes
<?}else {?>
<input type="radio" name="eventtype" value="OneTime" checked
accesskey="n">No<?}?>
was just wondering if that was the right way to determine the state of a
radio button...?
if the value of $old['Type']="Annual" then the yes button is
checked...if
not then the no button is checked instead...
[/snip]

Check for the value assigned to each

if("Annual" == $_POST['eventtype']){
   ... do stuff ...
} elseif("OneTime" == $_POST['eventtype']){
   ... do other stuff ...
}

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to