Ok, echo me da:
Cita: Parse error: syntax error, unexpected ':' in /homepages/18/d317375696/htdocs/enlace.php on line 10
code:
Código PHP:
Ver original<html>
<head>
<title>pelis.php</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$id=$_GET["ver"]:
$sql = "SELECT * FROM enlaces WHERE id = $id";
$enlaces = $row['enlaces'];
$detalles = $row['detalles'];
$servidor = $row['servidor'];
$anio = $row['anio'];
$nombre = $row['nombre'];
$caratula = $row['caratula'];
$id=$row['id'];
}
?>
<table>
<tr>
<td rowspan="4"><img style="width: 120px; height: 180px;" src="<? echo $caratula; ?>" /></td>
<td>
<table>
<tr>
<td><b>Nombre:</b> <? echo $nombre; ?></td>
</tr>
<tr>
<td><b>Año:</b> <? echo $anio; ?></td>
</tr>
<tr>
<td><b>Servidor:</b> <? echo $servidor; ?></td>
</tr>
<tr>
<td><b>Detalles/sinopsis:</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $detalles; ?></textarea></td>
</tr>
</table>
</td>
</tr>
</table>
<b>Links de descarga:</b><br><textarea style="width:480px; height:100px; padding:5px"><? echo $enlaces ?></textarea>
<?
?>
</body>
</html>