Forum Moderators: coopster
I am assuming that your form is submitted using the post method. You would do the tests for values etc on the page that is specified in the 'action' of the form.
if you had a radio button such as these 2
<input type="radio" name="choose" value="one">
<input type="radio" name="choose" value="two">
now when this form is posted to your script these variables will become available in the $_POST array. A good way to look at what you have available and to understand how the $_POST array works is to do this in your script
echo '<pre>';
print_r($_POST);
echo '</pre>';
if you have this for now, try submitting your form a bunch of times to see what it looks like. Try once with one radio selected, once with the second and once with none at all and see what your options might be for testing that value.
a function that might come in handy is isset [php.net]. That and an if statement and you should be laughing.