Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf8">
<title>UN EJEMPLO</title>
</head>
<?php
//Nos conectamos a la base de datos
$bd_host = "localhost";
$bd_usuario = "pecesama";
$bd_password = "pruebas";
$bd_base = "basecurso";
$conexion = mysql_connect($bd_host, $bd_usuario, $bd_password);
mysql_select_db($bd_base, $conexion);
//Convertimos los datos del formulario a cadenas.
$nombre = $_POST['nombre'];
$nombredos = $_POST['nombreact'];
$dire = $_POST['dire'];
$tele = $_POST['tel'];
$ecorreo = $_POST['email'];
$resultados=mysql_query("SELECT * FROM tablacurso WHERE nombre LIKE '%{$nombre}%'", $conexion);
$actual=mysql_query("UPDATE tablacurso SET
nombre='$nombredos',
direccion='$dire',
email='$ecorreo',
telefono='$tele'
WHERE nombre='$nombredos'", $conexion);
//Mostramos el encabezado de los resultados dentro de un formulario que actualizará datos
echo"<form action=ejemplo.php method =post><table border=1 cellspacing=1 cellpadding=1>
<tr>
<td><b>NOMBRE</b></td>
<td><b>DIRECCION</b></td>
<td><b>TELEFONO</b></td>
<td><b>E-MAIL</b></td>
</tr>";
//Creamos el bucle para los resultados
while($row=mysql_fetch_array($resultados)){
echo"
<tr>
<td><input type=text name=nombreact size=20 maxlength=30 value=$row[nombre]></td>
<td><input type=text name=dire size=20 maxlength=30 value=$row[direccion]></td>
<td><input type=text name=tel size=20 maxlength=30 value=$row[telefono]></td>
<td><input type=text name=email size=20 maxlength=30 value=$row[email]></td>
<td><input type=submit name=boton value=ACTUALIZAR></td>
</tr>";
}
echo"</table></form>";
//Cerramos la conexión con MySQL
mysql_close($conexion);
?>
<body>
<small>INGRESE SUS DATOS</small><br>
<form action="ejemplo.php" method ="post">
<input type="text" name="nombre" size="20" maxlength="30">
<input type="submit" name="boton" value="ENVIAR">
</form><br>
</body>
</html>
mi base de datos se llama : mybd
mi tabla se llama : user
y dentro de user tengo : pass
Si alguien me lo puede adaptar se lo agradeceria, lo mio es mas simple es un solo campo