tengo un registro en la base de datos y estoy intentando ordenar los registros según un campo que llamo control y que lo divido en 3 secciones (sección1, sección2, sección3) y no se como ordenar para que me ordene los productos en filas según su sección me salen todos salteados, como puedo indicarle para que me salga como quiero.
este es mi código
Código PHP:
Ver original
<?php $tienda= "tienda: " . $_GET["tienda"]; 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; } } $colname_listadoproductos = "-1"; $colname_listadoproductos = $_GET['tienda']; } $query_listadoproductos = sprintf("SELECT * FROM productos WHERE tienda = %s", GetSQLValueString($colname_listadoproductos, "text")); $listadoproductos = mysql_query($query_listadoproductos, $blueberryswebtiendas) or die(mysql_error()); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>mis productos</title> <link href="../estiloaccesousuarios.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="contenedor" > <div id="contenido"> <table width="746" border="1" cellspacing="0"> <tr> <td colspan="4">Listado de productos</td> </tr> <tr> <td width="122">producto</td> <td width="100">categoria</td> <td width="124">nº de existencias<?php echo $row_listadoproductos['tienda']; ?></td> <td width="212">tienda</td> </tr> <?php do { ?> <tr> <td><?php echo $row_listadoproductos['nombre_producto']; ?></td> <td><?php echo $row_listadoproductos['control']; ?></td> <td><?php echo $row_listadoproductos['existencias_producto']; ?></td> <td> </td> </tr> </table> </div> </div> </body> </html> <?php ?>
gracias