Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to update radio button value in database using php

<input type="radio" name="type" value="S" <?php if ($type == 'S') echo 'checked="checked"'; ?>" /> Student<br />
<input type="radio" name="type" value="T" <?php if ($type == 'T') echo 'checked="checked"'; ?>" /> Teacher<br />
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #update #radio #button #database #php
ADD COMMENT
Topic
Name
8+9 =