Hola, quisiera saver que error tiene este codigo, ya que yo no le veo ninguno, la variable
$id me la saca como null :
Código HTML:
Ver original<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?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'];
}
?>
<td rowspan="4"><img style="width: 120px; height: 180px;" src="<? echo $caratula; ?>" />
</td> <td><b>Nombre:
</b> <? echo $nombre; ?></td> <td><b>A
ño:
</b> <? echo $anio; ?></td> <td><b>Servidor:
</b> <? echo $servidor; ?></td> <td><b>Detalles/sinopsis:
</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $detalles; ?></textarea></td> <b>Links de descarga:
</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $enlaces ?></textarea> <?
?>