Radio Button
Posted: Fri May 04, 2012 10:48 pm
Code: Select all
<input type="radio" name="custom10" value="1" <?php if ($ticket['custom10'] = 1) {echo 'checked="checked"';} ?> /> Yes
<input type="radio" name="custom10" value="" <?php if ($ticket['custom10'] = 1 ) {echo '';} ?> /> No
if custom10 = null then radio no is selected
What am i missing here?