I don't have access to the script at the moment so I can't actually test this until tomorrow but this is what I have put together in the meantime. I have given the "Yes" and "No" buttons value of 1 and 0 respectively ...
<input type="radio" name="qone" value="1">Yes
<input type="radio" name="qone" value="0">No
<input type="radio" name="qtwo" value="1">Yes
<input type="radio" name="qtwo" value="0">No
And in the processing script I am checking to see if the value is 1 and if it is, run the rest of the script, otherwise do nothing.
if ( ($_POST['qone'] ) == '1'
{
do stuff ....
}
if ( ($_POST['qtwo'] ) == '1'
{
do stuff ....
}
I couldn't wrap my head around isset() in relation to one of my previous problems but I will give it a go tomorrow when I can work on the actual script. Is one way better than the other?