Código PHP:
Ver original
<?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": break; case "double": break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } $maxRows_listadoproductos = 2; $pageNum_listadoproductos = 0; $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); $listadoproductos = mysql_query($query_limit_listadoproductos, $blueberryswebtiendas) or die(mysql_error()); $totalRows_listadoproductos = $_GET['totalRows_listadoproductos']; } else { } ?>
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>