Friday, 16 May 2014

Radio buttons and checkboxes in html with php

<input type="radio" <?php if($row->status=='Active') {echo 'checked=checked';} ?> name="status" id="status" value="Active">Active
<input type="radio" <?php if($row->status=='Inactive') {echo 'checked=checked';} ?>  name="status" id="status" value="Inactive">Inactive</td>

No comments :

Post a Comment