First I have this:
if ($UBBCodeAllow eq "yes"
{
$UBBCodeyes = "CHECKED";
} else {
$UBBCodeno = "CHECKED";
}
Then after I have:
<td width=50% valign=top>
<FONT SIZE="2" FACE="Verdana, Arial"><B><INPUT TYPE="RADIO" NAME="UBBCodeAllow" VALUE="yes" $UBBCodeyes>
Allow UBB Code
<BR>
<INPUT TYPE="RADIO" NAME="UBBCodeAllow" VALUE="no" $UBBCodeno>
Don't Allow UBB Code</B></FONT>
</td></tr>
On my variable file, I have it like $BBCodeAllow = "yes";
After when I go back to the form, it does not show "CHECKED" when I view the source. Please tell me what I'm doing wrong. Thank you.
if ($UBBCodeAllow eq "yes"
$UBBCodeyes = "CHECKED";
} else {
$UBBCodeno = "CHECKED";
}
Then after I have:
<td width=50% valign=top>
<FONT SIZE="2" FACE="Verdana, Arial"><B><INPUT TYPE="RADIO" NAME="UBBCodeAllow" VALUE="yes" $UBBCodeyes>
Allow UBB Code
<BR>
<INPUT TYPE="RADIO" NAME="UBBCodeAllow" VALUE="no" $UBBCodeno>
Don't Allow UBB Code</B></FONT>
</td></tr>
On my variable file, I have it like $BBCodeAllow = "yes";
After when I go back to the form, it does not show "CHECKED" when I view the source. Please tell me what I'm doing wrong. Thank you.