<?
//assume you can create table
//assume you are using mysql_fetch_array() to iterate through
//the data
echo "<form action=\'editpage.php\' method=\'post\'>";
while ($rows = mysql_fetch_array($result)){
$row_id=$rows['id'];
//your code to show one row goes here
//add radio button and assign it the value of row_id
echo "<td><input type=\'radio\' name=\'editrow\' value=\'$row_id\'>Edit rows data";
//end the loop and/or get next record
}
echo "<input type=\'submit\' value=\'Edit marked records\'>
</form></table></body></html>";
?>