Hi, I'm new to php, so this might'nt be possible .... I'm trying to get php to evaluate the result of [Yes] [No] radio buttons in html and then run php scripts. I don't know what the php coding should be, once either of the radio buttons is selected. I was hoping that by selecting [Yes] then php script continues, but selecting [No] would stop the current script, exit and run another php.
I have included what I am trying to do below ....
<form>
<tr>
<td colspan=4>Are you over 21?
<input type="Radio" name="over21" value="1">Yes <input type="Radio" name="over21" value="0">No
<?
if No or value="0" then display another.php and exit this.php otherwise continue with this.php
?>
</td>
</tr>
Any help would be great ..... Thanks.
