Ver Mensaje Individual
  #7 (permalink)  
Antiguo 16/09/2008, 15:02
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: Tengo un problema con odbc_num_rows

Puedes hacer algo asi:
Código php:
Ver original
  1. $consulta = "SELECT COUNT(*) AS 'total' FROM Fichas WHERE (((Fichas.Fecha) Between #$fecha1# And #$fecha2#) AND ((Fichas.Clasificacion)>='001' And (Fichas.Clasificacion)<='002'))
  2. ORDER BY Fichas.Fecha DESC";
  3.  
  4. $result = odbc_exec($db,$consulta);
  5. $fila = odbc_fetch_array($result)
  6. $total = $fila['total'];
  7. echo "numero de filas: $total";

Saludos.