http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dpopular&field-keywords=metallica&x=9&y=20
abajo anexo el código
LES AGRADECERIA SI ME PUEDEN AYUDAR
Código PHP:
<?php
include("conexion.php");
$consulta = "SELECT * FROM discos";
$consultar_discos = mysql_query($consulta, $conexion) or die("No se pudo realizar la consulta a la Base de Datos");
$fila_consulta = mysql_fetch_array($consultar_discos);
?>
<html>
<head>
<title>Tu DISCO.NET - Listado de Música</title>
</head>
<body>
<h2 align="center">Listado de Música</h2>
<?php do { ?>
<table width="80%" border="0" align="center">
<tr>
<td width="4%" height="38" align="left" valign="top">Aqui la numeración</td>
<td width="15%" rowspan="3" align="left" valign="top"><img src="imagenes/miniaturas/<?php echo $fila_consulta['imagen']; ?>"/></td>
<td width="81%" align="left" valign="top"> <?php echo $fila_consulta['nombre_disco'];?> Por <?php echo $fila_consulta['artista'];?> </td>
</tr>
</table>
<?php } while($fila_consulta = mysql_fetch_array($consultar_discos));?>
</body>
<html>
<?php
mysql_free_result($consultar_discos);
?>