gracias
aquí el código:
Código PHP:
Ver original
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 = 4; $pageNum_listadoproductos = 0; $pageNum_listadoproductos = $_GET['pageNum_listadoproductos']; } $startRow_listadoproductos = $pageNum_listadoproductos * $maxRows_listadoproductos; $maxRows_listadoproductos = 6; $pageNum_listadoproductos = 0; $pageNum_listadoproductos = $_GET['pageNum_listadoproductos']; } $startRow_listadoproductos = $pageNum_listadoproductos * $maxRows_listadoproductos; $query_listadoproductos = "SELECT * FROM productos WHERE tienda = '$nombre'"; $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 { }
Código PHP:
Ver original
<table width="200" height="173" border="0" align="right"> <?php $cuantos=0; do{ if ($cuantos == 0){ ?> <tr> <?php } $cuantos ++; ?> <td width="200" align="center" valign="middle"><p><a href="detalle_producto.php?producto_id=<?php echo $row_listadoproductos['producto_id']; ?>"> <!--llamaremos a la pagina miniatura_productos para que las imagenes se vean en pequeño y detalle a diferentes medidas--> <?php $nombre2=$row_listadoproductos['foto_producto']; $nombre2= "miniatura_producto.php?nombre=productos/" . $nombre2; ?> </a> <p><a href="detalle_producto.php?producto_id=<?php echo $row_listadoproductos['producto_id']; ?>"> <img src="<?php echo $nombre2; ?>" width="134" height="91" /></a><?php echo $row_listadoproductos['nombre_producto']; ?><br /> <a href="detalle_producto.php?producto_id=<?php echo $row_listadoproductos['producto_id']; ?>">+ detalle</a> <p class="precio"><?php echo $row_listadoproductos['precio_producto']; ?> €</p> <form id="form1" name="form1" method="post" action="carrito_compra.php"> <input name="cantidad" type="hidden" id="cantidad" value="1" /> <input name="precio" type="hidden" id="precio" value="<?php echo $row_listadoproductos['precio_producto']; ?>" /> <input name="nombre" type="hidden" id="nombre" value="<?php echo $row_listadoproductos['nombre_producto']; ?>" /> <input type="image" name="imageField" id="imageField" src="imagenes/botones/btncestacompra.png"/> </form></td> <?php //este numero del if de la variable cuantos es el numero de filas que queremos if ($cuantos == 3){ $cuantos =0; ?> </tr> <?php } ?> </table>