eresvey aca te dejo el script que ejecuta al iniciar el index.php, que ademas de cargar otros componentes carga productlist.php que es el que te voy a postiar abajo!! este funciona perfecto y recupera las imagenes a la perfeccion con sus datos correspondientes! Si no te sirve, desime a que tabla te referis? a la de DB?
Código PHP:
Ver original<?php // comienso del listado de producto sin el buscador
}
$productsPerRow = 1;
$productsPerPage = 10;
$children = ' (' . implode(', ', $children) . ')';
$sql = "SELECT pd_id, pd_description, pd_thumbnail, pd_qty, c.cat_name, pd_price * sc_shipping_cost AS pd_price
FROM tbl_shop_config, tbl_product pd, tbl_category c
WHERE pd.cat_id = c.cat_id AND pd.cat_id IN $children
ORDER BY pd_description ASC";
$result = dbQuery(getPagingQuery($sql, $productsPerPage));
$pagingLink = getPagingLink($sql, $productsPerPage, "c=$catId");
$numProduct = dbNumRows($result);
$columnWidth = (int)(100 / $productsPerRow);
?>
<table width="100%" border="0" cellspacing="0" cellpadding="20">
<?php
if ($numProduct > 0 ) {
$i = 0;
while ($row = dbFetchAssoc($result)) {
if ($pd_thumbnail) {
$pd_thumbnail = WEB_ROOT . 'images/product/' . $pd_thumbnail;
} else {
$pd_thumbnail = WEB_ROOT . 'images/no-image-small.png';
}
if ($i % $productsPerRow == 0) {
echo '<tr>';
}
$pd_price = displayAmount($pd_price);
echo "<td width=\"$columnWidth=\" align=\"left\"><a><img src=\"$pd_thumbnail\" border=\"0\"></a></td>
<td width=\"$columnWidth%\" align=\"reight\"><a>Descripcion : $pd_description</a><td><a> Precio : $pd_price</a>";
if ($pd_qty <= 0) {
echo "<br> Agotado";
}
echo "</td>\r\n";
if ($i % $productsPerRow == $productsPerRow - 1) {
echo '</tr>';
}
$i += 1;
}
if ($i % $productsPerRow > 0) {
echo '<td colspan="' . ($productsPerRow - ($i % $productsPerRow)) . '"> </td>';
}
} else {
?>
<tr><td width="100%" align="center" valign="center">No hay productos en esta categoria</td></tr>
<?php
}
?>
</table>
<p align="center"><?php echo $pagingLink; ?></p>
<p align="center"> </p>
Gracias por tu tiempo eresvey!!