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>