Ver Mensaje Individual
  #6 (permalink)  
Antiguo 08/03/2005, 04:23
sergi_climent
 
Fecha de Ingreso: enero-2005
Ubicación: Barcelona
Mensajes: 1.473
Antigüedad: 19 años, 10 meses
Puntos: 10
Como puedo cambiar el codigo para mostrar los datos de esa manera?

Código PHP:
$sql="SELECT right(fecha,4)as año,tienda,fecha,Count(numero) AS clientes,Sum(total) AS total FROM tickets INNER JOIN tendes ON id_tenda = tienda GROUP BY tendes,fecha HAVING fecha='".$data_usuari."'OR '".$data_passada."'".$criterio."              
ORDER BY tienda ASC LIMIT ".$limitInf.",".$tamPag;
    $res=mysql_query($sql);
    echo "<div align='center' size='1'>";
    echo "<font face='verdana' size='-2'>S'han trobat ".$numeroRegistros." resultats  |  ";
    echo "ordenats per <b>".$orden."</b>";
    if(isset($txt_criterio)){
         echo "<br>Valor filtre: <b>".$txt_criterio."</b>";}
        echo "</font></div>";
        echo "<table align='center' width='80%' border='0' cellspacing='1' cellpadding='0' style='font-size=14'>";
        echo "<tr><td colspan='6'><hr noshade></td></tr>";
        echo "<th bgcolor='#666666'><a class='ord' href='".$_SERVER["PHP_SELF"]."?pagina=".$pagina."&criterio=".$txt_criterio."&fecha=".$fecha."'>Any</a></th>";
        echo "<th bgcolor='#666666'><a class='ord' href='".$_SERVER["PHP_SELF"]."?pagina=".$pagina."&criterio=".$txt_criterio."&fecha=".$fecha."'>Tendes</a></th>";
        echo "<th bgcolor='#666666'><a class='ord' href='".$_SERVER["PHP_SELF"]."?pagina=".$pagina."&criterio=".$txt_criterio."&fecha=".$fecha."'>Clients</a></th>";
        echo "<th bgcolor='#666666'><a class='ord' href='".$_SERVER["PHP_SELF"]."?pagina=".$pagina."&criterio=".$txt_criterio."&fecha=".$fecha."'>Total</a></th>";
        while($registro=mysql_fetch_array($res))
        {
?>
<!-- taula de resultats -->
  <tr bgcolor="#CCCCCC" onMouseOver="this.style.backgroundColor='#EFEFEF';this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#CCCCCC'"o"];" onClick="window.open('dsp_desgloç.php?numero=<? echo $registro["numero"?>','Ticket','width=600, height=350')">
      <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><b><? echo $registro["año"]; ?></b></font></td>
      <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><b><? echo $registro["tienda"]; ?></b></font></td>
    <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><b><? echo $registro["clientes"]; ?></b></font></td>
    <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><b><? echo $registro["total"]; ?></b></font></td>
  </tr>
<!-- fi taula resultats -->
<?
        
}//fi while
        
echo "</table>";