I'm able to the value for 2 of the options in the radio button I have, but
can't seem to get more than 3 options to work. How can I get 3 more options
added to this current coding. The other options are: email and fax and
pager.
<? $check0 = $check1 = "";$check2 = $check3 = ""; $check4="";
if ($prefmethod == "Phone") { $check0 = " CHECKED"; } else { $check1 = "
CHECKED"; }
echo '<INPUT TYPE="RADIO" NAME="ud_prefme thod"
VALUE="Phone"'. $check0.'>Phone ';
echo '<INPUT TYPE="RADIO" NAME="ud_prefme thod"
VALUE="Mobile"' .$check1.'>Mobi le'; ?>
can't seem to get more than 3 options to work. How can I get 3 more options
added to this current coding. The other options are: email and fax and
pager.
<? $check0 = $check1 = "";$check2 = $check3 = ""; $check4="";
if ($prefmethod == "Phone") { $check0 = " CHECKED"; } else { $check1 = "
CHECKED"; }
echo '<INPUT TYPE="RADIO" NAME="ud_prefme thod"
VALUE="Phone"'. $check0.'>Phone ';
echo '<INPUT TYPE="RADIO" NAME="ud_prefme thod"
VALUE="Mobile"' .$check1.'>Mobi le'; ?>
Comment