tengo este juego de registros que me muestra las imágenes de una tabla, pero necesitaría que me las mostrara en relación a otro campo que tengo alguien me podría ayudar porfa:
Código PHP:
Ver original<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
}
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ?
intval($theValue) : "NULL"; break;
case "double":
$theValue = ($theValue != "") ?
doubleval($theValue) : "NULL"; break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_listadoproductos = 2;
$pageNum_listadoproductos = 0;
if (isset($_GET['pageNum_listadoproductos'])) { $pageNum_listadoproductos = $_GET['pageNum_listadoproductos'];
}
$startRow_listadoproductos = $pageNum_listadoproductos * $maxRows_listadoproductos;
$query_listadoproductos = "SELECT * FROM productos";
$query_limit_listadoproductos = sprintf("%s LIMIT %d, %d", $query_listadoproductos, $startRow_listadoproductos, $maxRows_listadoproductos);
if (isset($_GET['totalRows_listadoproductos'])) { $totalRows_listadoproductos = $_GET['totalRows_listadoproductos'];
} else {
$all_listadoproductos = mysql_query($query_listadoproductos); }
$totalPages_listadoproductos = ceil($totalRows_listadoproductos/$maxRows_listadoproductos)-1; ?>
aquí el resto donde esta la imagen y un do para repetir la región
Código PHP:
Ver original<?php do { ?>
<table width="168" height="173" border="1" align="center">
<tr>
<td width="158" align="center"><a href="detalle_producto.php?producto_id=<?php echo $row_listadoproductos['producto_id']; ?>"><img src="productos/<?php echo $row_listadoproductos['foto_producto']; ?>" width="134" height="91" /></a></td>
</tr>
<tr>
<td height="23" align="center"><?php echo $row_listadoproductos['nombre_producto']; ?></td>
</tr>
<tr>
<td align="center"><?php echo $row_listadoproductos['precio_producto']; ?></td>
</tr>
</table>