oK, ahora lo he puesto asi y si funciona, pero se me ve 1 abajo de otro, mira:
http://todoenlaces.org/peliculas.php como hago para que se me vean 1 al lado del otro?
Codigo:
Código PHP:
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$connect=mysql_connect("","","");
mysql_select_db("",$connect);
$sql = "SELECT * FROM enlaces order by id desc limit 2";
$result = mysql_query($sql, $connect) or die (mysql_error());
while ($row = mysql_fetch_array($result)) {
echo '<table align="center">
<tr>
<td width="135" align="center"><img style="width: 120px; height: 180px;" src="'.$row['caratula'].'" /></td></tr>
<tr>
<td align="center">'.$row['nombre'].'</td></tr>
<tr>
<td> </td></tr>
<tr>
<td align="center"><a href="enlace.php?ver='.$row['id'].'">Ver Mas</a></td></tr>
</table>';
}
?>
</body>
</html>