Ver Mensaje Individual
  #12 (permalink)  
Antiguo 23/09/2005, 09:09
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Todos los if ($row algo) cambialos como te indiqué.
Ejemplo:

cambia if($row1==0) por

Código PHP:
<?php
  
if(isset($result))
  {
     if(
odbc_num_rows($result)==0)
     {
         
//no hay registros
     
}
  }
?>