in reply to Re: If statement based on Radio Button Values
in thread If statement based on Radio Button Values

businessCall.value is Javascript not Perl. Without seeing your script I can only guess you are using CGI and it should be something like
my $subject = "Merchant Referral"; if (param('businessCall') eq "Yes_bus") { $subject = "Branch Manager Business Call"; }
poj