I would like to have a situation where I have a page and a viewer is able to select one of two options.
For example
Yes | No
will this work?
if (!isset($POST['Yes'] AND !isset($POST['No']){
do this
}
elseif (!isset($POST['Yes']){
do this
}
elseif(!isset($POST['No']){
do this
}
else{
}