hola muy buenas tengo un problema a la hora de introducir una serie de imágenes en mi web, he creado un juego de registros donde coloco una serie de productos (las imágenes) pero conforme voy introduciendo me gustaría que se introdujeran el ultimo introducido el primero y no al revés como me sucede ahora y no se como cambiar esto alguien tiene alguna idea de que parámetro cambiar.
gracias
aquí el código:
Código PHP:
Ver originalfunction 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 = 4;
$pageNum_listadoproductos = 0;
if (isset($_GET['pageNum_listadoproductos'])) { $pageNum_listadoproductos = $_GET['pageNum_listadoproductos'];
}
$startRow_listadoproductos = $pageNum_listadoproductos * $maxRows_listadoproductos;
$maxRows_listadoproductos = 6;
$pageNum_listadoproductos = 0;
if (isset($_GET['pageNum_listadoproductos'])) { $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);
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;
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>