<?php
include('establecer_conexion.php');
$link = conexion();
$cedula = $_POST["cedula"];
$result = mysql_query ("select * from empleado where ci_empleado = '$cedula'", $link);
$row = mysql_fetch_array($result);
?>
<form id="form2" name="form2" method="post" action="">
<table>
<th><input type="text" name="nombre" value="<?php echo $row["nombre"] ?>"/></th>
<th><input type="submit" name="Submit" value="enviar" /></th>
</table>
</form>
hasta aqui todo muy bien me imprime la consulta en el text, pero luego al tratar de ejecutar la actualizacion no guardar

<?php
$nombre = $_POST["nombre"];
$result = mysql_query ("update empleado set nombre = '$nombre' where ci_empleado = '$cedula'");