Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/12/2005, 15:18
Avatar de -=ArgoN=-
-=ArgoN=-
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 18 años, 6 meses
Puntos: 1
Prueba esto:
Código:
function bCampos(tabla, nom) {
	i = 0;
	ok = false;
	while (i<campos[tabla].length) {
		if (campos[tabla][i] == nom) {
			ok = true;
			return ok;
		}
		i++;
	}
}
Feliz Navidad

ArgoN