I have the list of records like this
o 1 xxx yyy
o 2 xxx yyy
o 3 xxx yyy
if i click the first record radio bhutton, the value of 1 pass to anchor tag
<?php foreach($model as $result) { ?>
<tr>
<td>
<input type="radio" name="pol_id" value="<?=$result['id']?>" />
<?=$result['name']?>
</td>
<td><?=$result['country']?></td>
<td><?=$result['state']?></td>
</tr>
<?php } ?>
<tr>
<td align="right">
<a href="update?id=<?=$result['id']?>">Edit
</td>
</tr>