Im currently using the code below to show the value of a database field. How can i make the radio buttons read only so the customers cant change it.
<tr>
<td class="main"><?php echo ENTRY_ACCOUNT_TYPE; ?></td>
<td class="main"><?php echo tep_draw_radio_field('register', 'merchant', $merchant) . ' ' . MERCHANT . ' ' . tep_draw_radio_field('register', 'msp', $msp) . ' ' . MSP . ' ' . (tep_not_null(ENTRY_SIGNUP_TYPE_ERROR) ? '<span class="inputRequirement">' . ENTRY_LAST_NAME_TEXT . '</span>': ''); ?></td>
</tr>