Cita: NULL You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Codigo actualmente:
Código PHP:
Ver original<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$caratula=$_GET['caratula'];
$id=$_POST['id'];
$id_peli = ""; //id de la peli que quieras
$sql = "SELECT * FROM enlaces WHERE id = ".$id;
$nombre = $row['nombre'];
}
?>
<table align="center">
<tr><td align="center"><img src="<?php echo $caratula; ?>" /></td></tr>
<tr><td align="center"><?php echo $nombre; ?></td></tr>
<tr><td> </td></tr>
<tr><td align="center"><a href="ver.php?ver=<?php echo $id; ?>">Ver Mas</a></td></tr>
</table>
</body>
</html>