Sunday, 15 March 2015

How to Edit radio Button in mvc

First simple insert Date and Edit data for gender(radio) and simple update

============
edit.php
=============
<td><input type="radio" name="r1" value="male" <?php echo ($row1[6]=='male')?'checked':'' ?> >male
    <input type="radio" name="r1" value="femal" <?php echo ($row1[6]=='femal')?'checked':'' ?>>female</td>

No comments:

Post a Comment