Hola a todos otra vez molestando XD,estoy haciendo unas pruebas y tengo el siguiente problema, tengo este codigo que me muesta una lista de datos con un boton llamado seleccionar al lado de cada fila,lo que quiero hacer es mandar los datos da la fila que seleccione a los inputs del formulario y luego modificarlos, lo que necesito saber es solo como mandar los datos de una fila especifica a los campos del formulario, me orientan un poco? Gracias.
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ejemplo</title>
</head>
<body onload="showFlatCalendar()" bgcolor="#F9F9F9">
</div>
<form action="frmprueba.php" method="post" enctype="multipart/form-data" name="formulario">
<h1 align="center" class="titulo">PRUEBA</h1>
<table align="center" id="datos" >
<tr>
<th></th>
<td><input name="idprueba" type="hidden" size="430" value="<?php $idprueba ?>" > </td>
</tr>
<tr>
<th>Nombre</th>
<td><input type="text" id="nombre" size="30" name="nombre" value="<?php $nombre?>"/></td>
</tr>
<tr>
<th>Apellido</th>
<td><input type="text" id="apellido" size="30" name="apellido" value="<?php $apellido?>"/></td>
</tr>
<td colspan="2" align="center"><input name="submit" type="submit" value="Modificar" id="button"></td>
</tr></table>
</form>
<?php
$result = mysql_query("SELECT idprueba ,nombre, apellido FROM prueba ORDER BY idprueba DESC LIMIT 5; ", $link);
echo "<table width='200' border='1' align='center'>
<td align='center'>Nombre</td>
<td align='center'>Apellido</td>
<td align='center' >Accion</td> \n";
do {
echo "
<tr>
<td align='center'>".$row["nombre"]."</td>
<td align='center'>".$row["apellido"]."</td>
<td align='center'><input type='submit' name='selecionar' value='Seleccionar'
id='button'></td>
</tr>
";
echo "</table> \n";
} else {
echo "¡ No se ha encontrado ningún registro !";
}
?>
</body>
</html>