Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/11/2004, 13:51
catrin
 
Fecha de Ingreso: julio-2003
Mensajes: 53
Antigüedad: 21 años, 4 meses
Puntos: 0
Otra vez, alguien puede darme una idea.
como dije obtengo los datos de la siguiente manera:

//coneccion a la base de datos
mysql_connect("localhost","root","root");
//ejecutamos sentencia sql
$resul=mysql_db_query("gestion","select consumo_h from agua where año='$b'
and mes= '$a'");
$resul2=mysql_db_query("gestion","select consumo_h from agua where año='$c'
and mes= '$a'");
?>
<table align ="center" border="2" bordercolor="blue">
<tr>
<th>mes</th>
<th> Año <?php echo $b;?></th>
<th> Año <?php echo $c;?> </th>
<th>variación</th>
<?
//Mostramos los registros
While ($row=mysql_fetch_array($resul))
While ($row2=mysql_fetch_array($resul2))
{
echo '<tr><td>'.$a.'</td>';
echo '<td>'.number_format($row[consumo_h]).'</td>';
echo '<td>'.number_format($row2[consumo_h]).'</td>';
echo '<td>'.$v.'</td><tr>';
}
mysql_free_result($resul)

Ahora como los trabajo.

Ayuda please!!!!!!!!