Ok, here is where list is defined:
Would you like to be added to my mailing list? <br>
No<input name="list" type="radio" value="listno" />
Yes<input checked="checked" name="list" type="radio" value="listyes" />
This is in a form section in the regular file for the contact page. This form is linked to a file which contains what I gave above. Obviously, there is more to the code than these snippets, but I think the problem lies within these lines:
if ($list == "&listno")
$mailinglist = "no\n";
else $mailinglist = "yes\n";
$message = " $todayis [CST] \n
From: $visitor ($visitormail)\n
Subject: $subject \n
Message: $notes \n
Mailing list: $mailinglist \n
Basically, when the person clicks on the "no" radio button, I want mailing list to equal a printout of "no", and vice-versa. Thanks for your help.