First, is this the right way to determine which radio button in a form is checked?<br>
<br>
if ($fields{'choice'} eq "choice1")<br>
{ &send_1; exit; }<br>
if ($fields{'choice'} eq "choice2")<br>
{ &send_2; exit; }<br>
<br>
Second, if i have a form submitting the first half of a e-mail address (the part before @), how do i add the part after the @ if i know the domain?<br>
<br>
Thanks...