Ver Mensaje Individual
  #9 (permalink)  
Antiguo 21/05/2009, 08:11
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 15 años, 9 meses
Puntos: 416
Respuesta: problemas con bucle while

O.O Y ... ¿cual es el problema?

Echale una mirada al post de acoevil:
Código php:
Ver original
  1. $clientes=mysql_query("select campos from clientes where cliente='$cliente' and password='$pcliente' limit 1");
  2.  
  3. if(mysql_num_rows($clientes)>0)
  4. {
  5. echo "te encuentras registrado";
  6.  
  7. }
  8. else
  9. {
  10. echo "No estas registrado";
  11.  
  12. }