bueno, ya lo he probado, me da este error:
Parse error: syntax error, unexpected
'!' in /homepages/18/d317375696/htdocs/enlace.php on line 35
Codigo actualmente:
Código PHP:
Ver original<html>
<head>
<title>pelis.php</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<style TYPE="text/css">
</style>
<body style="background-image: url(imagenes/fondo.png); background-attachment:fixed;">
<?php
$id=$_GET["ver"];
$sql = "SELECT * FROM enlaces WHERE id = $id";
//se muestran todos los campos deseados, menos los vacios
if($row['caratula'] != ""){
echo $caratula=$row['caratula']."<br />";
}
if($row['nombre'] != ""){
echo $nombre=$row['nombre']."<br />";
}
if($row['anio'] != ""){
echo $anio=$row['anio']."<br />";
}
if($row['detalles'] != ""){
echo $detalles=$row['detalles']."<br />";
}
if($row['id'] ! ""){
echo $row['id']."<br />";
}
if($row['enlaces'] ! ""){
echo $enlaces=$row['enlaces']."<br />";
}
if($row['detalles'] ! ""){
echo $detalles=$row['detalles']."<br />";
}
}
?>
<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 name="textarea" style="width:480px; height:150px; padding:5px"><? echo $enlaces ?></textarea>
<?
?>
</body>
</html>