Tengo entendido que hay que darle un valor al radiobuton ,en mi caso le paso el valor del codigo del producto:
Código:
  
pero luego en producto_modificar.php hago<form action="producto_modificar.php" method="get">
<table class='tabla-productos'>
	<tr class='encabezado-tabla'> 
		<td> </td>
		<td><strong>Codigo</strong></td>
		<td><strong>Nombre producto</strong></td>
		<td><strong>Precio</strong></td>
	</tr>
<?php
	while ($fila =mysql_fetch_array($rst_productos))
	{
?>
	<tr class="cuerpo-tabla">
		<td> <input type="radio" name="reg_id" value="<?php $fila["procodigo"] ?>">   </td>
		<td><?php echo $fila["procodigo"]; ?></td>
		<td><?php echo $fila["pronombre"]; ?></td>
		<td><?php echo $fila["proprecio"]; ?></td>
	</tr>
<?php
  	}
?>
</table>
<input type="submit" value="modificar">
</form>
Código:
  
y no me funciona. De que manera se puede resolver utilizando php ? $identificador = (int) $_GET['reg_id'];
 
  Tema resuelto 

