24/12/2005, 15:18
|
| | | Fecha de Ingreso: octubre-2005 Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 19 años, 3 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 |