i want to create check box in db in IS yes/no, if i click the check then radiobutton in form that particular option will select in db

You should be able to create some sort of boolean field, otherwise use a small integer field (like a "tinyint", or whatever your DB calls it). Once created, use a true/non-zero value as yes/checked. Your form then would have the programming to know what that value means.
Obviously you need to handle your DB connection properly, but once you have the record you could do something like this:

<input type="checkbox" <?php if (returnRecord[columnName] == aTrueValue) {echo 'checked="checked"';}?> />
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.