Código HTML:
Ver original
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php $connect=mysql_connect("_________","_______","________"); var_dump($id); mysql_select_db("__________",$connect); $sql = "SELECT * FROM enlaces WHERE id = '$id'"; $result = mysql_query($sql, $connect) or die (mysql_error()); while ($row = mysql_fetch_array($result)) { $enlaces = $row['enlaces']; $detalles = $row['detalles']; $servidor = $row['servidor']; $anio = $row['anio']; $nombre = $row['nombre']; $caratula = $row['caratula']; $id=$row['id']; } ?> <table> <tr> <td> <table> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> </td> </tr> </table> <? ?> </body> </html>